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(); } /// /// Authenticates the current /// public void Authenticate() { } } }