Esempio n. 1
0
 public AdminUtilitiesController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IAdminServices adminServices,
                                 IProductServices productServices, IApplicationContext currentDbContext, IEmployeeShiftsServices employeeShiftsServices)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     _adminServices       = adminServices;
     _productServices     = productServices;
     _currentDbContext    = currentDbContext;
     _employShiftServices = employeeShiftsServices;
 }
Esempio n. 2
0
 public TimeLogController(IEmployeeShiftsServices employeeShiftsServices, IEmployeeShiftsStoresServices employeeShiftsStoresServices,
                          IEmployeeServices employeeServices, ITenantLocationServices tenantLocationsServices, IShiftsServices shiftsServices, ICoreOrderService orderService, IPropertyService propertyService,
                          IAccountServices accountServices, ILookupServices lookupServices, IActivityServices activityServices) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _employeeShiftsServices       = employeeShiftsServices;
     _employeeShiftsStoresServices = employeeShiftsStoresServices;
     _employeeServices             = employeeServices;
     _tenantLocationsServices      = tenantLocationsServices;
     _shiftsServices   = shiftsServices;
     _activityServices = activityServices;
 }
 public cdataController(IAttLogsServices attLogsServices, IEmployeeShiftsServices employeeShiftsServices,
                        IAttLogsStampsServices attLogsStampsServices,
                        IOperLogsServices operLogs, IEmployeeServices employeeServices, IEmployeeShiftsStoresServices shiftsStoresServices, ITerminalServices terminalServices,
                        ITenantLocationServices tenantLocationServices, IOrderService orderService, IProductServices productServices, IUserService userService, IAccountServices accountServices, IProductPriceService productPriceService)
     : base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _attLogsServices        = attLogsServices;
     _employeeShiftsServices = employeeShiftsServices;
     _attLogsStampsServices  = attLogsStampsServices;
     _operLogs           = operLogs;
     _employeeServices   = employeeServices;
     _shiftStoreServices = shiftsStoresServices;
 }
Esempio n. 4
0
 public EmployeeShiftsController(IEmployeeShiftsServices employeeShiftsServices, ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IEmployeeServices employeeServices, ITerminalServices terminalServices) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _employeeShiftsServices = employeeShiftsServices;
     _employeeServices       = employeeServices;
     _terminalServices       = terminalServices;
 }