Example #1
0
 public AccountsController(IProjectAccountService practiceService, IDropDownSubCategoryService subCategoryService,
                           IEmployeeService empService)
 {
     this.accountsService    = practiceService;
     this.subCategoryService = subCategoryService;
     this.empService         = empService;
 }
 public PracticeController(IPracticeService practiceService, IEmployeeService empService,
                           IDropDownSubCategoryService subCategoryService)
 {
     this.practiceService    = practiceService;
     this.empService         = empService;
     this.subCategoryService = subCategoryService;
 }
Example #3
0
 public AllocationController(IEmployeeService empService,
                             IDropDownSubCategoryService subCategoryService,
                             IAllocationService allocationService, IProjectService projectService)
 {
     this.empService         = empService;
     this.subCategoryService = subCategoryService;
     this.allocationService  = allocationService;
     this.projectService     = projectService;
 }
Example #4
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;
 }
Example #5
0
 public VendorController(IVendorService vendorService,
                         IDropDownSubCategoryService subCategoryService,
                         IServiceRequestService requestService, ISystemSettingsService settingsService)
 {
     this.vendorService      = vendorService;
     this.subCategoryService = subCategoryService;
     this.requestService     = requestService;
     this.settingsService    = settingsService;
 }
 public ContractorController(IContractorService contractService, IProjectService projectService,
                             IEmployeeService empService, IDropDownSubCategoryService subCategoryService,
                             IVendorService vendorService)
 {
     this.contractService    = contractService;
     this.projectService     = projectService;
     this.empService         = empService;
     this.subCategoryService = subCategoryService;
     this.vendorService      = vendorService;
 }
Example #7
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;
 }
Example #8
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;
 }
Example #9
0
 public BuLevelController(IBuLevelService BuLevelService, IDropDownSubCategoryService subCategoryService)
 {
     this.BuLevelService     = BuLevelService;
     this.subCategoryService = subCategoryService;
 }
 public AssetsController(IDropDownSubCategoryService subCategoryService, IEmployeeTechService techService)
 {
     this.subCategoryService = subCategoryService;
     this.techService        = techService;
 }
Example #11
0
 public SubCategoryController(IDropDownCategoryService categoryService, IDropDownSubCategoryService subCategoryService)
 {
     this.categoryService    = categoryService;
     this.subCategoryService = subCategoryService;
 }
 public CertsController(ICertificationService certService, IDropDownSubCategoryService subCategoryService)
 {
     this.certService        = certService;
     this.subCategoryService = subCategoryService;
 }
Example #13
0
 public DevReqController(IDropDownSubCategoryService subCategoryService, IDevRequestService requestService)
 {
     this.subCategoryService = subCategoryService;
     this.requestService     = requestService;
 }
 public ServiceRequestController(IServiceRequestService requestRequest,
                                 IDropDownSubCategoryService subCategoryService)
 {
     this.requestService     = requestRequest;
     this.subCategoryService = subCategoryService;
 }