public ApiPalletsSyncController(ITerminalServices terminalServices,
                                 ITenantLocationServices tenantLocationServices, IOrderService orderService,
                                 IProductServices productServices, IUserService userService, IPalletingService palletService) :
     base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _palletService = palletService;
 }
 public PalletsController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, ITenantsServices tenantsServices, IPalletingService palletingService, IMarketServices marketServices, IEmployeeServices employeeServices, IGaneConfigurationsHelper helper) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _palletingService = palletingService;
     _marketServices   = marketServices;
     _employeeServices = employeeServices;
     _helper           = helper;
     _tenantServices   = tenantsServices;
 }