Пример #1
0
 public HomeController(UserManager <AppUser> userManager, IVacationsService vacationsService,
                       ITasksService tasksService)
 {
     this.userManager      = userManager;
     this.vacationsService = vacationsService;
     this.tasksService     = tasksService;
 }
Пример #2
0
 public VacationsController(UserManager <AppUser> userManager, IVacationsService vacationsService,
                            IDepartmentService departmentService)
 {
     this.userManager       = userManager;
     this.vacationsService  = vacationsService;
     this.departmentService = departmentService;
 }
Пример #3
0
 public HomeController(UserManager <AppUser> userManager, IDepartmentService departmentService,
                       IProjectService projectService, IVacationsService vacationsService,
                       ITasksService tasksService, ITrainingService trainingService,
                       IEmployeService employeService)
 {
     this.userManager       = userManager;
     this.departmentService = departmentService;
     this.projectService    = projectService;
     this.vacationsService  = vacationsService;
     this.tasksService      = tasksService;
     this.trainingService   = trainingService;
     this.employeService    = employeService;
 }
 public VacationsController(
     IVacationsService vacationsService
     )
 {
     _vacationsService = vacationsService;
 }
 public VacationsController(UserManager <AppUser> userManager,
                            IVacationsService vocationService)
 {
     this.userManager     = userManager;
     this.vocationService = vocationService;
 }