public DepartmentController(IDepartmentSevice departmentSevice, IOptions <core_startOptions> core_startoptions)
 {
     _departmentSevice  = departmentSevice;
     _core_Startoptions = core_startoptions;
 }
 public CompanySummaryViewComponent(IDepartmentSevice departmentSevice)
 {
     _departmentSevice = departmentSevice;
 }
 public MyTestViewComponent(IDepartmentSevice departmentSevice)
 {
     _departmentSevice = departmentSevice;
 }
 public EmployeeController(IDepartmentSevice departmentSevice, IEmpyloyeeService empyloyeeService)
 {
     _departmentSevice = departmentSevice;
     _empyloyeeService = empyloyeeService;
 }
 public AddDepartmentModel(IDepartmentSevice departmentSevice)
 {
     _departmentSevice = departmentSevice;
 }