Example #1
0
 public EmployeeDepartmentController(IEmployeeDepartmentService iEmployeeDepartmentService,
                                     IEmployeeService iEmployeeService,
                                     IMerchantService iMerchantService)
 {
     this.iEmployeeDepartmentService = iEmployeeDepartmentService;
     this.iEmployeeService           = iEmployeeService;
     this.iMerchantService           = iMerchantService;
 }
 public EmployeeDepartmentController(IEmployeeDepartmentService employeeDepartmentService) : base(employeeDepartmentService)
 {
 }
 public EmployeeDepartmentsController(IEmployeeDepartmentService EmployeeDepartmentService)
 {
     _EmployeeDepartmentService = EmployeeDepartmentService;
 }
Example #4
0
 public EmployeeDepartmentsController(IEmployeeDepartmentService _employeeDepartmentService) : base(_employeeDepartmentService)
 {
 }
Example #5
0
 public HomeController(IEmployeeDepartmentService employeeDepartmentService, IDepartmentService departmentService)
 {
     m_EmployeeDepartmentService = employeeDepartmentService;
     m_DepartmentService         = departmentService;
 }
 public EmployeeDepartmentController(IEmployeeDepartmentService employeeDepartmentService)
 {
     _employeeDepartmentService = employeeDepartmentService;
 }