public SubordinatesConfirmationVM(IPMSController appController,
                                   IEmployeeServiceWrapper employeeService, IEmployeeAppLocalizedResources localizedResources)
 {
     this.appController               = appController;
     this.employeeService             = employeeService;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }
Example #2
0
 public EmployeeListVM(IEmployeeController employeeController, IPMSController appController,
                       IEmployeeServiceWrapper employeeService, IEmployeeAppLocalizedResources localizedResources)
 {
     this.appController               = appController;
     this.employeeService             = employeeService;
     this.employeeController          = employeeController;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }
Example #3
0
 public EmployeeJobPositionsVM(IEmployeeController employeeController, IPMSController appController,
                               IEmployeeServiceWrapper employeeService, IJobPositionInPeriodServiceWrapper jobPositionInPeriodService, IEmployeeAppLocalizedResources localizedResources)
 {
     this.appController               = appController;
     this.employeeService             = employeeService;
     this.jobPositionInPeriodService  = jobPositionInPeriodService;
     this.employeeController          = employeeController;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }
Example #4
0
 public EmployeeVM(IPMSController appController,
                   IEmployeeServiceWrapper employeeService,
                   IEmployeeAppLocalizedResources localizedResources,
                   ICustomFieldServiceWrapper customFieldService)
 {
     this.appController               = appController;
     this.employeeService             = employeeService;
     this.customFieldService          = customFieldService;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }
Example #5
0
 public EmployeeJobCustomFieldsVM(IPMSController appController,
                                  IEmployeeServiceWrapper employeeService,
                                  IEmployeeAppLocalizedResources localizedResources,
                                  ICustomFieldServiceWrapper customFieldService,
                                  IJobPositionInPeriodServiceWrapper jobPositionInPeriodService,
                                  IJobServiceWrapper jobService
                                  )
 {
     this.appController              = appController;
     this.employeeService            = employeeService;
     this.customFieldService         = customFieldService;
     this.jobPositionInPeriodService = jobPositionInPeriodService;
     this.jobService = jobService;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }