Ejemplo n.º 1
0
 public EmploymentTypeService(IUnitOfWork unitOfWork
                              , IEnumReferenceService enumReferenceService
                              , IRepository <mf_EmploymentType> repoEmploymentType)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoEmploymentType   = repoEmploymentType;
 }
Ejemplo n.º 2
0
 public AgencyService(IUnitOfWork unitOfWork
                      , IEnumReferenceService enumReferenceService
                      , IRepository <mf_Agency> repoAgency)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoAgency           = repoAgency;
 }
Ejemplo n.º 3
0
 public PenaltyTypeService(IUnitOfWork unitOfWork
                           , IEnumReferenceService enumReferenceService
                           , IRepository <mf_PenaltyType> repoPenaltyType)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoPenaltyType      = repoPenaltyType;
 }
Ejemplo n.º 4
0
 public EmploymentStatusService(IUnitOfWork unitOfWork
                                , IEnumReferenceService enumReferenceService
                                , IRepository <mf_EmploymentStatu> repoEmploymentStatus)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoEmploymentStatus = repoEmploymentStatus;
 }
Ejemplo n.º 5
0
 public AllowanceService(IUnitOfWork unitOfWork
                         , IEnumReferenceService enumReferenceService
                         , IRepository <mf_Allowance> repoAllowance)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoAllowance        = repoAllowance;
 }
Ejemplo n.º 6
0
 public CountryService(IUnitOfWork unitOfWork
                       , IEnumReferenceService enumReferenceService
                       , IRepository <mf_Country> repoCountry)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoCountry          = repoCountry;
 }
Ejemplo n.º 7
0
 public IdentificationDocumentService(IUnitOfWork unitOfWork
                                      , IEnumReferenceService enumReferenceService
                                      , IRepository <sys_IdentificationDocument> repoIdentificationDocument)
 {
     this._unitOfWork                 = unitOfWork;
     this._enumReferenceService       = enumReferenceService;
     this._repoIdentificationDocument = repoIdentificationDocument;
 }
Ejemplo n.º 8
0
 public LocationService(IUnitOfWork unitOfWork
                        , IEnumReferenceService enumReferenceService
                        , IRepository <sys_Location> repoLocation)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoLocation         = repoLocation;
 }
Ejemplo n.º 9
0
 public PayrollGroupService(IUnitOfWork unitOfWork
                            , IEnumReferenceService enumReferenceService
                            , IRepository <mf_PayrollGroup> repoPayrollGroup)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoPayrollGroup     = repoPayrollGroup;
 }
Ejemplo n.º 10
0
 public OffenseService(IUnitOfWork unitOfWork
                       , IEnumReferenceService enumReferenceService
                       , IRepository <mf_Offense> repoOffense)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoOffense          = repoOffense;
 }
Ejemplo n.º 11
0
 public WorkDayService(IUnitOfWork unitOfWork
                       , IEnumReferenceService enumReferenceService
                       , IRepository <mf_WorkDay> repoWorkDay)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoWorkDay          = repoWorkDay;
 }
Ejemplo n.º 12
0
 public DeductionService(IUnitOfWork unitOfWork
                         , IEnumReferenceService enumReferenceService
                         , IRepository <mf_Deduction> repoDeduction)
 {
     this._unitOfWork           = unitOfWork;
     this._enumReferenceService = enumReferenceService;
     this._repoDeduction        = repoDeduction;
 }
Ejemplo n.º 13
0
 public DepartmentService(IUnitOfWork unitOfWork
                          , IEnumReferenceService enumReferenceService
                          , IRepository <mf_DepartmentSection> repoDepartmentSection
                          , IRepository <mf_Department> repoDepartment)
 {
     this._unitOfWork            = unitOfWork;
     this._repoDepartmentSection = repoDepartmentSection;
     this._enumReferenceService  = enumReferenceService;
     this._repoDepartment        = repoDepartment;
 }
Ejemplo n.º 14
0
 public MenuService(IUnitOfWork unitOfWork
                    , IMemoryCacheManager memoryCacheManager
                    , IEnumReferenceService enumReferenceService
                    , IRepository <sys_Menu> repoMenu)
 {
     this._unitOfWork           = unitOfWork;
     this._memoryCacheManager   = memoryCacheManager;
     this._enumReferenceService = enumReferenceService;
     this._repoMenu             = repoMenu;
 }
Ejemplo n.º 15
0
 public PayrollService(IUnitOfWork unitOfWork
                       , IEnumReferenceService enumReferenceService
                       , IRepository <ta_CutOffAttendanceSummary> repoCutOffAttendanceSummary
                       , IRepository <ta_CutOffAttendance> repoCutOffAttendance
                       , IRepository <pr_Payroll> repoPayroll)
 {
     this._enumReferenceService        = enumReferenceService;
     this._unitOfWork                  = unitOfWork;
     this._repoCutOffAttendanceSummary = repoCutOffAttendanceSummary;
     this._repoPayroll                 = repoPayroll;
     this._repoCutOffAttendance        = repoCutOffAttendance;
 }
Ejemplo n.º 16
0
 public EmployeeController(IEnumReferenceService enumReferenceService
                           , IEmploymentStatusService employmentStatusService
                           , IEmploymentTypeService employmentTypeService
                           , ICountryService countryService
                           , IEmployeeService employeeService)
 {
     this._employmentTypeService   = employmentTypeService;
     this._employmentStatusService = employmentStatusService;
     this._countryService          = countryService;
     this._enumReferenceService    = enumReferenceService;
     this._employeeService         = employeeService;
 }
Ejemplo n.º 17
0
 public UserService(IUnitOfWork unitOfWork
                    , IEnumReferenceService enumReferenceService
                    , IRepository <sys_Role> repoRole
                    , IRepository <sys_Company> repoCompany
                    , IRepository <sys_Permission> repoPermission
                    , IRepository <sys_UserSession> repoUserSession
                    , IRepository <sys_UserRole> repoUserRole
                    , IRepository <sys_User> repoUser)
 {
     this._repoRole             = repoRole;
     this._repoUserRole         = repoUserRole;
     this._repoCompany          = repoCompany;
     this._repoPermission       = repoPermission;
     this._enumReferenceService = enumReferenceService;
     this._repoUserSession      = repoUserSession;
     this._unitOfWork           = unitOfWork;
     this._repoUser             = repoUser;
 }
Ejemplo n.º 18
0
 public EmployeeService(
     IEnumReferenceService enumReferenceService
     , IRepository <mf_ApplicationRequestType> repoApplicationRequestType
     , IRepository <mf_Employee> repoEmployee
     , IRepository <mf_Employee201> repoEmployee201
     , IRepository <mf_EmployeeAddress> repoEmployeeAddress
     , IRepository <mf_EmployeeAllowance> repoEmployeeAllowance
     , IRepository <mf_EmployeeBalanceLeave> repoEmployeeBalanceLeave
     , IRepository <mf_EmployeeBasicPay> repoEmployeeBasicPay
     , IRepository <mf_EmployeeDeduction> repoEmployeeDeduction
     , IRepository <mf_EmployeeIdentificationDocument> repoEmployeeIdentificationDocument
     , IRepository <mf_EmployeeOffense> repoEmployeeOffense
     , IRepository <mf_EmployeeSkill> repoEmployeeSkill
     , IRepository <mf_EmployeeTraining> repoEmployeeTraining
     , IRepository <mf_EmployeeWorkDay> repoEmployeeWorkDay
     , IRepository <mf_EmployeeWorkHistory> repoEmployeeWorkHistory
     , IRepository <mf_Offense> repoOffense
     , IRepository <mf_WorkDay> repoWorkDay
     , IUnitOfWork unitOfWork
     )
 {
     this._enumReferenceService       = enumReferenceService;
     this._repoApplicationRequestType = repoApplicationRequestType;
     this._repoEmployee                       = repoEmployee;
     this._repoEmployee201                    = repoEmployee201;
     this._repoEmployeeAddress                = repoEmployeeAddress;
     this._repoEmployeeAllowance              = repoEmployeeAllowance;
     this._repoEmployeeBalanceLeave           = repoEmployeeBalanceLeave;
     this._repoEmployeeBasicPay               = repoEmployeeBasicPay;
     this._repoEmployeeDeduction              = repoEmployeeDeduction;
     this._repoEmployeeIdentificationDocument = repoEmployeeIdentificationDocument;
     this._repoEmployeeOffense                = repoEmployeeOffense;
     this._repoEmployeeSkill                  = repoEmployeeSkill;
     this._repoEmployeeTraining               = repoEmployeeTraining;
     this._repoEmployeeWorkDay                = repoEmployeeWorkDay;
     this._repoEmployeeWorkHistory            = repoEmployeeWorkHistory;
     this._repoOffense = repoOffense;
     this._repoWorkDay = repoWorkDay;
     this._unitOfWork  = unitOfWork;
 }
Ejemplo n.º 19
0
 public AttendanceService(
     IEnumReferenceService enumReferenceService
     , IHolidayService holidayService
     , IRepository <mf_Employee> repoEmployee
     , IRepository <mf_WorkDay> repoWorkDay
     , IRepository <ta_CutOffAttendance> repoCutOffAttendance
     , IRepository <ta_CutOffAttendanceSummary> repoCutOffAttendanceSummary
     , IRepository <ta_CutOffAttendanceSummaryDetail> repoCutOffAttendanceSummaryDetail
     , IRepository <ta_EmployeeAttendance> repoEmployeeAttendance
     , IUnitOfWork unitOfWork
     )
 {
     this._holidayService                    = holidayService;
     this._enumReferenceService              = enumReferenceService;
     this._repoCutOffAttendance              = repoCutOffAttendance;
     this._repoCutOffAttendanceSummary       = repoCutOffAttendanceSummary;
     this._repoCutOffAttendanceSummaryDetail = repoCutOffAttendanceSummaryDetail;
     this._repoEmployee           = repoEmployee;
     this._repoEmployeeAttendance = repoEmployeeAttendance;
     this._repoWorkDay            = repoWorkDay;
     this._unitOfWork             = unitOfWork;
 }
Ejemplo n.º 20
0
 public ReferenceController(IEnumReferenceService enumReferenceService)
 {
     this._enumReferenceService = enumReferenceService;
 }