Example #1
0
 public InterviewController(IServiceJobInterview serviceInterview, IServiceTrainee serviceStudent, IServiceFirm serviceCompany, IServiceBranch serviceBranch, IServiceEducation serviceEducation, IServiceEmploymentStatus serviceEmploymentStatus, IServiceTraineeEmploymentStatus serviceStudentWorkStateDetail, IServiceTraineeStatus serviceInterviewState, IServiceEmployee serviceTeacher)
 {
     _serviceInterview              = serviceInterview;
     _serviceStudent                = serviceStudent;
     _serviceCompany                = serviceCompany;
     _serviceBranch                 = serviceBranch;
     _serviceEducation              = serviceEducation;
     _serviceInterviewState         = serviceInterviewState;
     _serviceStudentWorkStateDetail = serviceStudentWorkStateDetail;
     _serviceEmploymentStatus       = serviceEmploymentStatus;
     _serviceTeacher                = serviceTeacher;
 }
 public InterviewController(IServiceJobInterview serviceInterview, IServiceTrainee serviceStudent, IServiceFirm serviceCompany, IServiceBranch serviceBranch, IServiceEducation serviceEducation, IServiceEmploymentStatus serviceEmploymentStatus, IServiceTraineeEmploymentStatus serviceStudentWorkStateDetail, IServiceTraineeStatus serviceInterviewState, IServiceEmployee serviceTeacher)
 {
     _serviceInterview = serviceInterview;
     _serviceStudent = serviceStudent;
     _serviceCompany = serviceCompany;
     _serviceBranch = serviceBranch;
     _serviceEducation = serviceEducation;
     _serviceInterviewState = serviceInterviewState;
     _serviceStudentWorkStateDetail = serviceStudentWorkStateDetail;
     _serviceEmploymentStatus = serviceEmploymentStatus;
     _serviceTeacher = serviceTeacher;
 }
 public EmployeeGridController(IServiceEmployee serviceEmployee)
 {
     this.service = serviceEmployee;
 }
 public SalaryController(IServiceSalary serviceSalary, IServiceEmployee serviceEmployee)
 {
     this.service         = serviceSalary;
     this.serviceEmployee = serviceEmployee;
 }
Example #5
0
 public GridEmployeeController(IServiceEmployee serviceEmployee, IServiceDepartment serviceDepartment)
 {
     this.service           = serviceEmployee;
     this.departmentService = serviceDepartment;
 }
 public TeacherController(IServiceEmployeeHistory serviceTeacherChange, IServiceEmployee serviceTeacher, IServiceTrainee serviceStudent)
 {
     _serviceTeacherChange = serviceTeacherChange;
     _serviceTeacher = serviceTeacher;
     _serviceStudent = serviceStudent;
 }
Example #7
0
 public ShiftController(IServiceShift serviceShift, IServiceEmployee serviceEmployee)
 {
     this.service         = serviceShift;
     this.serviceEmployee = serviceEmployee;
 }
Example #8
0
 public ApplicationServiceEmployee(IServiceEmployee service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
 public PersonalDataController(IServicePersonalData personalDataShift, IServiceEmployee serviceEmployee)
 {
     this.service         = personalDataShift;
     this.serviceEmployee = serviceEmployee;
 }
 public TeacherController(IServiceEmployeeHistory serviceTeacherChange, IServiceEmployee serviceTeacher, IServiceTrainee serviceStudent)
 {
     _serviceTeacherChange = serviceTeacherChange;
     _serviceTeacher = serviceTeacher;
     _serviceStudent = serviceStudent;
 }