public EmployeesController(UserManager <AppUser> userManager,
                            IEmployeService employeService, IDepartmentService departmentService,
                            ICityCountry cityCountryService)
 {
     this.userManager        = userManager;
     this.employeService     = employeService;
     this.departmentService  = departmentService;
     this.cityCountryService = cityCountryService;
 }
예제 #2
0
 public RegisterModel(
     UserManager <AppUser> userManager,
     SignInManager <AppUser> signInManager,
     ICityCountry cityCountryService,
     ICompanyService companyService,
     IDepartmentService departmentService)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     this.cityCountryService = cityCountryService;
     this.companyService     = companyService;
     this.departmentService  = departmentService;
 }