| 123456789101112131415161718192021222324252627 |
- using GreenTree.Nachtragsmanagement.Services.User;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Web.Mvc;
- namespace GreenTree.Nachtragsmanagement.Plugin.Test.Controllers
- {
- public class TestController : Controller
- {
- private readonly IUserService _userService;
- public TestController(
- IUserService userService)
- {
- _userService = userService;
- }
- // GET: Home
- public ActionResult Index()
- {
- return View("~/Views/Home/Index.cshtml");
- }
- }
- }
|