Example #1
0
 public EmployeeObjectController(
     IObjectService objectService,
     IEmployeeObjectService employeeObjectService)
 {
     this.objectService         = objectService;
     this.employeeObjectService = employeeObjectService;
 }
 public AngularTemplateController(IWorkerUserService userService,
                                  IEmployeeService employeeService,
                                  IEmployeeObjectService employeeObjectService,
                                  ISettingsService settingsService)
 {
     this.userService           = userService;
     this.employeeService       = employeeService;
     this.employeeObjectService = employeeObjectService;
     this.settingsService       = settingsService;
 }