Exemple #1
0
 public AccountsController(IProjectAccountService practiceService, IDropDownSubCategoryService subCategoryService,
                           IEmployeeService empService)
 {
     this.accountsService    = practiceService;
     this.subCategoryService = subCategoryService;
     this.empService         = empService;
 }
Exemple #2
0
 public RePosController(IRecruitmentRequestService reqService, IEmployeeService empService,
                        IProjectService projectService, IDropDownSubCategoryService subCategoryService, IProjectAccountService accountService)
 {
     this.empService         = empService;
     this.subCategoryService = subCategoryService;
     this.reqService         = reqService;
     this.projectService     = projectService;
     this.accountService     = accountService;
 }
Exemple #3
0
 public ReportsController(IAllocationService allocationService, IProjectService projectService,
                          IEmployeeService empService, IPracticeService practiceService, IProjectAccountService accountsService,
                          IDropDownSubCategoryService subCategoryService, IEmployeeTechService techService)
 {
     this.allocationService  = allocationService;
     this.projectService     = projectService;
     this.empService         = empService;
     this.practiceService    = practiceService;
     this.accountsService    = accountsService;
     this.subCategoryService = subCategoryService;
     this.techService        = techService;
 }
Exemple #4
0
 public EmployeeController(IEmployeeService empService, IDropDownSubCategoryService subCategoryService, IBuLevelService buLevelService,
                           IResourceLevelService resLevelService, ICertificationService certService, IProjectAccountService accService,
                           IProjectService projectService)
 {
     this.empService         = empService;
     this.subCategoryService = subCategoryService;
     this.buLevelService     = buLevelService;
     this.resLevelService    = resLevelService;
     this.certService        = certService;
     this.accService         = accService;
     this.projectService     = projectService;
 }