TestController.cs 631 B

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