public HomeController(IAuthenticateServices authenticateServices)
 {
     _authenticateServices = authenticateServices;
 }
Example #2
0
 public AccountController(IAuthenticateServices authenticationService)
 {
     this.authenticationService = authenticationService;
 }
 public AccountController(IAuthenticateServices authenticateServices)
 {
     _authenticateServices = authenticateServices;
 }
 public AuthenticationController(IAuthenticateServices authenticateServices)
 {
     _authenticateServices = authenticateServices;
 }