Exemple #1
0
 public MarketRoutesController(ICoreOrderService orderService,
                               IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IMarketServices marketServices, IEmployeeServices employeeServices) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _accountServices  = accountServices;
     _marketServices   = marketServices;
     _employeeServices = employeeServices;
 }
 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;
 }
Exemple #3
0
        public MainViewModel(IAssetsManager assetsManager, IMarketServices marketService)
        {
            m_assetsManager = assetsManager;

            this.ApplicationBar = new ApplicationBarViewModel(Cirrious.CrossCore.Mvx.GetSingleton <IMarketServices>());

            RaisePropertyChanged(() => this.BackgroundImage);
        }
Exemple #4
0
 public AccountController(ICoreOrderService orderService, IMarketServices marketServices, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IUserService userService, IInvoiceService invoiceService)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     _marketServices = marketServices;
     _userService    = userService;
     _invoiceService = invoiceService;
     _lookupServices = lookupServices;
 }
Exemple #5
0
 public TenantLocationsController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, ITenantLocationServices tenantLocationServices, IMarketServices marketServices, ITerminalServices terminalServices, IUserService userService, IEmployeeServices employeeServices)
     : base(orderService, propertyService, accountServices, lookupServices)
 {
     _tenantLocationServices = tenantLocationServices;
     _marketServices         = marketServices;
     this._terminalServices  = terminalServices;
     this._userService       = userService;
     this._employeeServices  = employeeServices;
 }
Exemple #6
0
        public MainViewModel(IAssetsManager assetsManager , IMarketServices marketService)
        {
            m_assetsManager = assetsManager;
            
            this.ApplicationBar = new ApplicationBarViewModel(Cirrious.CrossCore.Mvx.GetSingleton<IMarketServices>());

            RaisePropertyChanged(() => this.BackgroundImage);
            
        }
Exemple #7
0
 public ApiVanSalesController(ITerminalServices terminalServices,
                              ITenantLocationServices tenantLocationServices, IOrderService orderService,
                              IProductServices productServices, IUserService userService, IMarketServices marketServices, IVanSalesService vanSalesService, IVehicleInspectionService inspectionService, IEmployeeServices employeeServices,
                              IAccountServices accountServices, ITransferOrderService transferOrderService, ITenantsServices tenantServices)
     : base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _marketServices       = marketServices;
     _vanSalesService      = vanSalesService;
     _inspectionService    = inspectionService;
     _employeeServices     = employeeServices;
     _accountServices      = accountServices;
     _transferOrderService = transferOrderService;
     _tenantServices       = tenantServices;
 }
Exemple #8
0
 public ApplicationBarViewModel(IMarketServices marketServices)
 {
     m_marketServices = marketServices;
 }
 public VehicleInspectionController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices, IVehicleInspectionService inspectionService, IMarketServices marketServices) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _inspectionService = inspectionService;
     _marketServices = marketServices;
 }
 public ApplicationBarViewModel(IMarketServices marketServices)
 {
     m_marketServices = marketServices;            
 }
Exemple #11
0
 public TenantLocationServices(IApplicationContext currentDbContext, IProductServices productServices, IMarketServices marketServices)
 {
     _currentDbContext = currentDbContext;
     _productServices  = productServices;
     _marketServices   = marketServices;
 }
Exemple #12
0
 public PalletingService(IApplicationContext currentDbContext, IMarketServices marketServices, IUserService userService)
 {
     _currentDbContext = currentDbContext;
     _marketServices   = marketServices;
     _userService      = userService;
 }
Exemple #13
0
 public MarketRouteSchedulesController(ICoreOrderService orderService, IPropertyService propertyService, IAccountServices accountServices, ILookupServices lookupServices,
                                       IMarketServices marketServices, IMarketRouteScheduleService marketRouteScheduleService) : base(orderService, propertyService, accountServices, lookupServices)
 {
     _marketServices             = marketServices;
     _marketRouteScheduleService = marketRouteScheduleService;
 }
Exemple #14
0
 public ApiMarketsController(ITerminalServices terminalServices, ITenantLocationServices tenantLocationServices, IOrderService orderService, IProductServices productServices, IUserService userService, IMarketServices marketServices, ITransferOrderService transferOrderService) : base(terminalServices, tenantLocationServices, orderService, productServices, userService)
 {
     _marketServices       = marketServices;
     _transferOrderService = transferOrderService;
 }
 public MarketController(ILogger <MarketController> logger, IMarketServices marketServices)
 {
     this._logger = logger;
     market       = marketServices;
 }