TestController.cs 839 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. using GreenTree.Nachtragsmanagement.Services.User;
  7. using GreenTree.Nachtragsmanagement.Services.Deviation;
  8. namespace GreenTree.Nachtragsmanagement.Plugin.Test.Controllers
  9. {
  10. public class TestController : Controller
  11. {
  12. private readonly IUserService _userService;
  13. private readonly IDeviationService _deviationService;
  14. public TestController(
  15. IUserService userService,
  16. IDeviationService deviationService)
  17. {
  18. _userService = userService;
  19. _deviationService = deviationService;
  20. }
  21. // GET: Home
  22. public ActionResult Index()
  23. {
  24. return View("~/Plugins/Allgemein.Test/Views/Home/Index.cshtml");
  25. }
  26. }
  27. }