Пример #1
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IAuthenticationManager authManager, IEmployeeService empService, IEmployeeLoginMappingService userService)
 {
     _userManager     = userManager;
     _signInManager   = signInManager;
     _authManager     = authManager;
     this.empService  = empService;
     this.userService = userService;
     context          = new ApplicationDbContext();
 }
 public ELoginController(IEmployeeLoginMappingService userService, IEmployeeService empService)
 {
     this.userService = userService;
     this.empService  = empService;
     context          = new ApplicationDbContext();
 }