| 123456789101112131415161718192021222324252627282930313233 |
- using GreenTree.Nachtragsmanagement.Services.User;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace GreenTree.Nachtragsmanagement.Web.Controllers
- {
- public abstract class AuthController : Controller
- {
- private readonly IAuthenticationService _authenticationService;
- private readonly IUserService _userService;
- public AuthController(
- IAuthenticationService authenticationService,
- IUserService userService)
- {
- _authenticationService = authenticationService;
- _userService = userService;
- Authenticate();
- }
- /// <summary>
- /// Authenticates the current
- /// </summary>
- public void Authenticate()
- {
- }
- }
- }
|