public ApiWarehouseSyncController(IWarehouseSyncService warehouseSyncService, IGaneConfigurationsHelper configurationsHelper, ITerminalServices terminalServices,
                                   ITenantLocationServices tenantLocationServices, IOrderService orderService, IProductServices productServices, IUserService userService)
     : base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _warehouseSyncService = warehouseSyncService;
     _configurationsHelper = configurationsHelper;
 }
 public WorksOrdersController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IAppointmentsService appointmentsService,
                              IGaneConfigurationsHelper ganeConfigurationsHelper, IEmailServices emailServices, ITenantLocationServices tenantLocationservices, ITenantsServices tenantsServices)
     : base(orderService, propertyService, accountServices, lookupServices, appointmentsService, ganeConfigurationsHelper, emailServices, tenantLocationservices, tenantsServices)
 {
     _appointmentsService      = appointmentsService;
     _ganeConfigurationsHelper = ganeConfigurationsHelper;
 }
 public AppointmentsController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IEmployeeServices employeeServices, IAppointmentsService appointmentsService, IUserService userService, IGaneConfigurationsHelper emailNotificationsHelper) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _employeeServices         = employeeServices;
     _appointmentsService      = appointmentsService;
     _userService              = userService;
     _emailNotificationsHelper = emailNotificationsHelper;
 }
 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;
 }
 public SalesOrdersController(IProductServices productServices, ISalesOrderService salesOrderService, ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices,
                              IAppointmentsService appointmentsService, IGaneConfigurationsHelper configurationsHelper, IEmailServices emailServices, ITenantLocationServices tenantLocationservices, ITenantsServices tenantsServices)
     : base(orderService, propertyService, accountServices, lookupServices, appointmentsService, configurationsHelper, emailServices, tenantLocationservices, tenantsServices)
 {
     _salesServices   = orderService;
     _accountServices = accountServices;
     _productServices = productServices;
 }
 public ApiOrderProcessesSyncController(ITerminalServices terminalServices,
                                        ITenantLocationServices tenantLocationServices, IOrderService orderService,
                                        IProductServices productServices, IUserService userService, IAccountServices accountServices, IGaneConfigurationsHelper configHelper) :
     base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _accountServices = accountServices;
     _configHelper    = configHelper;
 }
 public StockTakesController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IStockTakeApiService stockTakeService, ITenantsServices tenantServices, ITenantLocationServices tenantLocationServices, IProductServices productServices, IGaneConfigurationsHelper configHelper)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     TenantLocationServices = tenantLocationServices;
     _stockTakeService      = stockTakeService;
     _tenantServices        = tenantServices;
     _productServices       = productServices;
     _configHelper          = configHelper;
 }
 public InvoiceController(IProductServices productServices, ISalesOrderService salesOrderService, ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices,
                          IAppointmentsService appointmentsService, IGaneConfigurationsHelper configurationsHelper, IEmailServices emailServices, ITenantLocationServices tenantLocationservices, ITenantsServices tenantsServices, IProductPriceService priceService, IGaneConfigurationsHelper helper, IInvoiceService invoiceService)
     : base(orderService, propertyService, accountServices, lookupServices, appointmentsService, configurationsHelper, emailServices, tenantLocationservices, tenantsServices)
 {
     _priceService    = priceService;
     _helper          = helper;
     _productServices = productServices;
     _invoiceService  = invoiceService;
 }
Ejemplo n.º 9
0
 public BaseReportsController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IAppointmentsService appointmentsService,
                              IGaneConfigurationsHelper ganeConfigurationsHelper, IEmailServices emailServices, ITenantLocationServices tenantLocationservices, ITenantsServices tenantsServices)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     _appointmentsService     = appointmentsService;
     GaneConfigurationsHelper = ganeConfigurationsHelper;
     _emailServices           = emailServices;
     _tenantLocationservices  = tenantLocationservices;
     _tenantServices          = tenantsServices;
 }
Ejemplo n.º 10
0
 public SalesOrderService(IApplicationContext currentDbContext, IGaneConfigurationsHelper configHelper, IAccountServices accountServices)
 {
     _currentDbContext = currentDbContext;
     _configHelper     = configHelper;
     _accountServices  = accountServices;
 }
 public OrderProcessController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IProductServices productServices, IGaneConfigurationsHelper ganeConfigurationsHelper)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     _productServices          = productServices;
     _ganeConfigurationsHelper = ganeConfigurationsHelper;
 }
Ejemplo n.º 12
0
 public PurchaseOrdersController(ITenantLocationServices tenantLocationServices, ICoreOrderService orderService, IStockTakeApiService stockTakeApiService, IPropertyService propertyService, IAccountServices accountServices,
                                 ILookupServices lookupServices, IAppointmentsService appointmentsService, IProductServices productServices, IProductLookupService productLookupService, IGaneConfigurationsHelper ganeConfigurationHelper,
                                 IEmailServices emailServices, ICommonDbServices commonDbServices, ITenantLocationServices tenantLocationservices, ISalesOrderService salesOrderService, ITenantsServices tenantsServices)
     : base(orderService, propertyService, accountServices, lookupServices, appointmentsService, ganeConfigurationHelper, emailServices, tenantLocationservices, tenantsServices)
 {
     StockTakeApiService     = stockTakeApiService;
     _productServices        = productServices;
     _productLookupService   = productLookupService;
     _orderService           = orderService;
     _tenantLocationServices = tenantLocationServices;
     _salesServices          = salesOrderService;
     _accountServices        = accountServices;
     _commonDbServices       = commonDbServices;
 }