コード例 #1
0
 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;
 }
コード例 #2
0
 public OrderDetailController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IStockTakeApiService stockTakeApiService, ICommonDbServices commonDbServices, IProductServices productServices, ITenantLocationServices tenantLocationServices, IProductPriceService productPriceService)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     StockTakeApiService     = stockTakeApiService;
     _commonDbServices       = commonDbServices;
     _productServices        = productServices;
     _tenantLocationServices = tenantLocationServices;
     _productPriceService    = productPriceService;
     _orderService           = orderService;
 }
コード例 #3
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;
 }
コード例 #4
0
 public ApiStockTakeSyncController(ITerminalServices terminalServices, ITenantLocationServices tenantLocationServices, IOrderService orderService,
                                   IProductServices productServices, IUserService userService, IStockTakeApiService stockTakeApiService) :
     base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _stockTakeApiService = stockTakeApiService;
 }