| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using GreenTree.Nachtragsmanagement.Services.User;
- using GreenTree.Nachtragsmanagement.Services.Deviation;
- namespace GreenTree.Nachtragsmanagement.Plugin.Test.Controllers
- {
- public class TestController : Controller
- {
- private readonly IUserService _userService;
- private readonly IDeviationService _deviationService;
- public TestController(
- IUserService userService,
- IDeviationService deviationService)
- {
- _userService = userService;
- _deviationService = deviationService;
- }
- // GET: Home
- public ActionResult Index()
- {
- return View("~/Plugins/Allgemein.Test/Views/Home/Index.cshtml");
- }
- }
- }
|