예제 #1
0
        public LeaveTypeController()
        {
            _departmentServices              = new DepartmentService();
            _designationServices             = new DesignationService();
            _moduleService                   = new ModuleService();
            _officeService                   = new OfficeServices();
            _bgService                       = new BusinessGroupService();
            _leaveTypeService                = new LeaveTypeService();
            _leaveRuleService                = new LeaveRuleService();
            _leaveRuleDetailService          = new LeaveRuleDetailService();
            _levelService                    = new LevelService();
            _darbandiService                 = new DarbandiService();
            _officeTypeService               = new OfficeTypeService();
            _rankService                     = new RankService();
            _rolesService                    = new RolesService();
            _roleAccessService               = new RolesAccessService();
            _leaveYearService                = new LeaveYearService();
            _sectionService                  = new SectionService();
            _shifService                     = new ShiftService();
            _shiftDayService                 = new ShiftDayService();
            _ethnicityService                = new EthnicityService();
            _jobTypeService                  = new JobTypeService();
            _educationLevelService           = new EducationLevelService();
            _rolesBusinessGroupAccessService = new RolesBusinessGroupAccessService();

            _fiscalService = new FiscalService();
        }
예제 #2
0
 public PayrollMonthController()
 {
     _moduleService = new ModuleService();
     _PayrollMonthDescriptionService = new PayrollMonthDescriptionService();
     _fiscalService = new FiscalService();
     _iunitofwork   = new UnitOfWork();
 }
예제 #3
0
 public LogOnController(IMainMenuService mainMenuService,
                        IEmployeeService employeeService,
                        IQueryService queryService, IFiscalService fiscalservice)
 {
     _mainMenuService = mainMenuService;
     _employeeService = employeeService;
     _queryService    = queryService;
     _fiscalservice   = fiscalservice;
 }
 public AttendancyEntireYearController()
 {
     _attendanceDailyServices = new AttendanceDailyService();
     _departmentServices      = new DepartmentService();
     _designationServices     = new DesignationService();
     _groupServices           = new GroupService();
     _officeServices          = new OfficeServices();
     _employeeServices        = new EmployeeService();
     _notifications           = new NotificationService();
     _reportServices          = new ReportsServices();
     _fiscalService           = new FiscalService();
 }
예제 #5
0
 public PayrollGenerateController()
 {
     _moduleService = new ModuleService();
     _PayrollAllowanceMasterService  = new PayrollAllowanceMasterService();
     _PayrollMonthDescriptionService = new PayrollMonthDescriptionService();
     _PayrollGenerationService       = new PayrollGenerationService();
     _departmentServices             = new DepartmentService();
     _EmployeeService      = new EmployeeService();
     _PayrollReportService = new PayrollReportService();
     _fiscalService        = new FiscalService();
     _officeService        = new OfficeServices();
 }
        public OverallPayrollSheetController()
        {
            _moduleService = new ModuleService();
            _PayrollAllowanceMasterService = new PayrollAllowanceMasterService();

            _PayrollGenerationService = new PayrollGenerationService();
            _departmentServices       = new DepartmentService();
            _EmployeeService          = new EmployeeService();
            _PayrollReportService     = new PayrollReportService();
            _fiscalService            = new FiscalService();
            _officeService            = new OfficeServices();
            _unitofwork = new UnitOfWork();
        }
예제 #7
0
 public VendaService(
     IUnitOfWork unitOfWork,
     IVendaRepository vendaRepository,
     IVendaItemRepository vendaItemRepository,
     IProdutoRepository produtoRepository,
     IFiscalService fiscalService,
     IVendaRegras vendaRegras)
 {
     this.unitOfWork          = unitOfWork;
     this.vendaRepository     = vendaRepository;
     this.vendaItemRepository = vendaItemRepository;
     this.produtoRepository   = produtoRepository;
     this.fiscalService       = fiscalService;
     this.vendaRegras         = vendaRegras;
 }
예제 #8
0
 public MyPayrollController()
 {
     _PayrollGenerationService = new PayrollGenerationService();
     _fiscalService            = new FiscalService();
 }
 public ClientFiscalFacade(IFiscalService fiscalService)
 {
     _fiscalService = fiscalService;
 }