Exemple #1
0
 public InquirySubjectInquirersViewModel(IJobPositionInPeriodServiceWrapper jobPositionInPeriodService, IPMSController appController
                                         , IEmployeeServiceWrapper employeeService)
 {
     this.jobPositionInPeriodService = jobPositionInPeriodService;
     this.appController   = appController;
     this.employeeService = employeeService;
 }
 public InquirySubjectInquirersUnitViewModel(IUnitInPeriodServiceWrapper unitInPeriodServiceWrapper, IPMSController appController
                                             , IEmployeeServiceWrapper employeeService)
 {
     this._unitInPeriodServiceWrapper = unitInPeriodServiceWrapper;
     this.appController   = appController;
     this.employeeService = employeeService;
 }
 public SubordinatesConfirmationVM(IPMSController appController,
                                   IEmployeeServiceWrapper employeeService, IEmployeeAppLocalizedResources localizedResources)
 {
     this.appController               = appController;
     this.employeeService             = employeeService;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }
 public ModifyEmployeeService(IEmployeeController employeeController
                              , IPMSController pmsController,
                              IEmployeeServiceWrapper employeeService)
 {
     this.employeeController = employeeController;
     this.pmsController      = pmsController;
     this.employeeService    = employeeService;
 }
Exemple #5
0
 public ChangeEmployeepointService(IEmployeeController employeeController
                                   , IPMSController pmsController,
                                   IEmployeeServiceWrapper employeeService)
 {
     this.employeeController = employeeController;
     this.pmsController      = pmsController;
     this.employeeService    = employeeService;
 }
Exemple #6
0
 public EmployeeListVM(IEmployeeController employeeController, IPMSController appController,
                       IEmployeeServiceWrapper employeeService, IEmployeeAppLocalizedResources localizedResources)
 {
     this.appController               = appController;
     this.employeeService             = employeeService;
     this.employeeController          = employeeController;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }
 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();
 }
Exemple #8
0
 public EmployeeVM(IPMSController appController,
                   IEmployeeServiceWrapper employeeService,
                   IEmployeeAppLocalizedResources localizedResources,
                   ICustomFieldServiceWrapper customFieldService)
 {
     this.appController               = appController;
     this.employeeService             = employeeService;
     this.customFieldService          = customFieldService;
     EmployeeMgtAppLocalizedResources = localizedResources;
     init();
 }
 public JobPositionInPeriodInquiryVM(IPMSController appController,
                                     IEmployeeServiceWrapper employeeService,
                                     IJobPositionInPeriodServiceWrapper jobPositionInPeriodService,
                                     IPeriodMgtAppLocalizedResources periodMgtAppLocalizedResources)
 {
     this.appController              = appController;
     this.employeeService            = employeeService;
     this.jobPositionInPeriodService = jobPositionInPeriodService;
     PeriodMgtAppLocalizedResources  = periodMgtAppLocalizedResources;
     init();
 }
Exemple #10
0
 public UnitInPeriodVerifierVM(IPMSController appController,
                               IEmployeeServiceWrapper employeeService,
                               IUnitInPeriodServiceWrapper unitInPeriodService,
                               IPeriodMgtAppLocalizedResources periodMgtAppLocalizedResources,
                               IUnitIndexInPeriodServiceWrapper unitIndexInPeriodServiceWrapper)
 {
     this.appController             = appController;
     this.employeeService           = employeeService;
     this.unitInPeriodService       = unitInPeriodService;
     this.unitIndexInPeriodService  = unitIndexInPeriodServiceWrapper;
     PeriodMgtAppLocalizedResources = periodMgtAppLocalizedResources;
     init();
 }
Exemple #11
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();
 }
Exemple #12
0
 public CalculationVM(IPMSController appController,
                      IPeriodMgtAppLocalizedResources periodMgtAppLocalizedResources,
                      ICalculationServiceWrapper calculationService,
                      IPolicyServiceWrapper policyServiceWrapper,
                      IEmployeeServiceWrapper employeeService,
                      IJobPositionInPeriodServiceWrapper jobPositionService,
                      IUnitInPeriodServiceWrapper unitService)
 {
     this.appController             = appController;
     this.calculationService        = calculationService;
     this.policyServiceWrapper      = policyServiceWrapper;
     this.employeeService           = employeeService;
     this.jobPositionService        = jobPositionService;
     this.unitService               = unitService;
     PeriodMgtAppLocalizedResources = periodMgtAppLocalizedResources;
     init();
 }
Exemple #13
0
 public DeleteEmployeeService(IPMSController pmsController, IEmployeeServiceWrapper employeeService)
 {
     this.pmsController   = pmsController;
     this.employeeService = employeeService;
 }
 public ConfirmEmployeeAboveMaxPointService(IPMSController pmsController, IEmployeeServiceWrapper employeeService)
 {
     this.pmsController   = pmsController;
     this.employeeService = employeeService;
 }
Exemple #15
0
 public EmployeeConverter(IEmployeeDataProvider employeeDataProvider, IEmployeeServiceWrapper employeeService, IEventPublisher publisher)
 {
     this.employeeDataProvider = employeeDataProvider;
     this.employeeService      = employeeService;
     this.publisher            = publisher;
 }