コード例 #1
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;
 }
コード例 #2
0
 public RLevelController(IResourceLevelService rLevelService, IBuLevelService buLevelService)
 {
     this.rLevelService  = rLevelService;
     this.buLevelService = buLevelService;
 }