コード例 #1
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;
 }
コード例 #2
0
 public AssetsController(IDropDownSubCategoryService subCategoryService, IEmployeeTechService techService)
 {
     this.subCategoryService = subCategoryService;
     this.techService        = techService;
 }
コード例 #3
0
 public BuzAssetsController(IEmployeeTechService techService)
 {
     this.techService = techService;
 }