Example #1
0
 public EmployeController(
     IEmployService employService,
     IDepartmentService departmentService,
     ICategoryService categoryService,
     IProjectService projectService)
 {
     this.employService     = employService;
     this.departmentService = departmentService;
     this.categoryService   = categoryService;
     this.projectService    = projectService;
 }
 public EmployeeController(IEmployService service)
 {
     _service = service;
 }