예제 #1
0
 public BusinessDivisionsController(IIndustryRepository industryRepository, IBusinessDivisionRepository businessdivisionRepository)
 {
     this.industryRepository = industryRepository;
     this.businessdivisionRepository = businessdivisionRepository;
 }
예제 #2
0
 public DepartmentsController(IBusinessDivisionRepository businessdivisionRepository, IDepartmentRepository departmentRepository)
 {
     this.businessdivisionRepository = businessdivisionRepository;
     this.departmentRepository = departmentRepository;
 }