コード例 #1
0
 public DeliveryController(
     ApiDbContext apiDbContext,
     IDeliveryService deliveryService)
 {
     _apiDbContext    = apiDbContext;
     _deliveryService = deliveryService;
 }
 public OrderShippingService(
     ICustomsService customesService,
     IDeliveryService deliveryService,
     IShippingService shippingService
     )
 {
 }
コード例 #3
0
 public DeliveryStaffController(IDeliveryService _deliveryService, IOrderService _orderService,
                                IProductInventoryService _productInventoryService)
 {
     deliveryService         = _deliveryService;
     productInventoryService = _productInventoryService;
     orderService            = _orderService;
 }
コード例 #4
0
ファイル: HomeController.cs プロジェクト: eliodecolli/M19G2
 public HomeController(IDishService dishService, IIngredientService ingredientService, IOrdersService orders, IDeliveryService delivery)
 {
     ordersService          = orders;
     deliveryService        = delivery;
     this.dishService       = dishService;
     this.ingredientService = ingredientService;
 }
コード例 #5
0
 public DeliveryController(IDeliveryService deliveryService, IMapper mapper,
                           IUnitOfWorkFactory unitOfWorkFactory)
 {
     _deliveryService   = deliveryService;
     _mapper            = mapper;
     _unitOfWorkFactory = unitOfWorkFactory;
 }
コード例 #6
0
        private ICommand _saveDeliveryLineViewCommand, _closeDeliveryLineViewCommand;//, _resetDeliveryLineViewCommand;
        #endregion

        #region Constructor
        public QuickProcessViewModel()
        {
            CleanUp();
            _deliveryService    = new DeliveryService();
            _taskProcessService = new TaskProcessService();

            LoadStaffs();
            LoadVehicles();
            LoadDeliveryMethods();
            CheckRoles();

            SelectedWarehouse = new WarehouseService(true)
                                .GetAll()
                                .FirstOrDefault();

            Messenger.Default.Register <int>(this, (message) =>
            {
                ProcessId = message;
            });

            Messenger.Default.Register <ProcessTypes>(this, (message) =>
            {
                SelectedProcessType = message;
            });
        }
コード例 #7
0
 public FormClients(IClientService client, IReportService service, IDeliveryService serviceS)
 {
     InitializeComponent();
     this.client   = client;
     this.service  = service;
     this.serviceS = serviceS;
 }
コード例 #8
0
        public WoredaStockDistributionController(
            IUtilizationHeaderSerivce utilizationService,
            IProgramService programService,
            IUtilizationDetailSerivce utilizationDetailSerivce,
            UserAccountService userAccountService,
            ICommonService commonService,
            IRegionalRequestService regionalRequestService,
            IReliefRequisitionDetailService reliefRequisitionDetailService,
            IReliefRequisitionService reliefRequisitionService,

            ITransactionService transactionService, IDispatchService dispatchService, IDeliveryService deliveryService, ILossReasonService lossReasonService, IPlanService planService, IAdminUnitService adminUnitService)
        {
            _utilizationService             = utilizationService;
            _programService                 = programService;
            _utilizationDetailSerivce       = utilizationDetailSerivce;
            _userAccountService             = userAccountService;
            _commonService                  = commonService;
            _regionalRequestService         = regionalRequestService;
            _reliefRequisitionDetailService = reliefRequisitionDetailService;
            _reliefRequisitionService       = reliefRequisitionService;
            _transactionService             = transactionService;
            _dispatchService                = dispatchService;
            _deliveryService                = deliveryService;
            _lossReasonService              = lossReasonService;
            _planService      = planService;
            _adminUnitService = adminUnitService;
        }
コード例 #9
0
 public SalesController()
 {
     var dbfactory = new DatabaseFactory();
     var unitOfWork = new UnitOfWork(dbfactory);
     _salesOrderService = new SalesOrderService(new SalesOrderRepository(dbfactory),
         new SalesOrderDetailRepository(dbfactory),
         new SalesOrderApprovalRepository(dbfactory),
         new NotificationRepository(dbfactory),
         new NotificationDetailRepository(dbfactory),
         unitOfWork);
     _approvalController = new ApprovalController<SlsSalesOrderApproval, SlsSalesOrderViewModel>(_salesOrderService);
     _deliveryService = new DeliveryService(new DeliveryRepository(dbfactory), new DeliveryDetailRepository(dbfactory), unitOfWork);
     _SecCompanyService = new SecCompanyService(new SecCompanyRepository(dbfactory), unitOfWork);
     _hrmEmployeeService = new HrmEmployeeService(new HrmEmployeeRepository(dbfactory), unitOfWork);
     _officeService = new OfficeService(new OfficeRepository(dbfactory), unitOfWork);
     _DistributorService = new DistributorService(new DistributorRepository(dbfactory), unitOfWork);
     _DealerService = new DealerService(new DealerRepository(dbfactory), unitOfWork);
     _CorporateClientService = new CorporateClientService(new CorporateClientRepository(dbfactory), unitOfWork);
     _RetailerService = new RetailerService(new RetailerRepository(dbfactory), unitOfWork);
     _FreeProductService = new FreeProductService(new FreeProductRepository(dbfactory), new ChartOfProductRepository(dbfactory),
         new UnitOfMeasurementRepository(dbfactory), unitOfWork);
     _ProductService = new ChartOfProductService(new ChartOfProductRepository(dbfactory), unitOfWork);
     _UnitService = new UnitOfMeasurementService(new UnitOfMeasurementRepository(dbfactory), unitOfWork);
     _salesDiscountSettingService = new SalesDiscountSettingService(new SalesDiscountSettingRepository(dbfactory), unitOfWork);
     _PartyCreditService = new PartyCreditReportService(new InvStoreOpeningRepository(dbfactory), unitOfWork);
     _promotionalOfferService = new PromotionalOfferService(new PromotionalOfferRepository(dbfactory),
         new PromotionalOfferDetailRepository(dbfactory),
         new UnitOfWork(dbfactory));
 }
コード例 #10
0
ファイル: DeliveryController.cs プロジェクト: nathnael/cats
        public DeliveryController(ITransportOrderService transportOrderService,
                                  IWorkflowStatusService workflowStatusService,
                                  IDispatchAllocationService dispatchAllocationService,
                                  IDeliveryService deliveryService,
                                  IDispatchService dispatchService,
                                  IDeliveryDetailService deliveryDetailService,
                                  INotificationService notificationService, IActionTypesService actionTypeService, IUserAccountService userAccountService,
                                  Cats.Services.EarlyWarning.ICommodityService commodityService, Cats.Services.EarlyWarning.IUnitService unitService,
                                  Cats.Services.Transaction.ITransactionService transactionService, IBusinessProcessService businessProcessService, IApplicationSettingService applicationSettingService, ITransporterPaymentRequestService transporterPaymentRequestService)
        {
            _transportOrderService     = transportOrderService;
            _workflowStatusService     = workflowStatusService;
            _dispatchAllocationService = dispatchAllocationService;
            _deliveryService           = deliveryService;
            _dispatchService           = dispatchService;
            _deliveryDetailService     = deliveryDetailService;
            _notificationService       = notificationService;

            _actionTypeService = actionTypeService;

            _userAccountService               = userAccountService;
            _commodityService                 = commodityService;
            _unitService                      = unitService;
            _transactionService               = transactionService;
            _businessProcessService           = businessProcessService;
            _applicationSettingService        = applicationSettingService;
            _transporterPaymentRequestService = transporterPaymentRequestService;
        }
コード例 #11
0
 public CartController(IUnitCartService unitCartServ, ICartService cartServ, IDeliveryService delivServ)
 {
     repository         = new EFDbContext();
     this.unitCartServ  = unitCartServ;
     this.cartService   = cartServ;
     this.delivertyServ = delivServ;
 }
コード例 #12
0
        public DeliveryServiceTests()
        {
            var options = new DbContextOptionsBuilder <DeliverItContext>()
                          .UseInMemoryDatabase(databaseName: "Add_writes_to_database")
                          .Options;

            dbContext       = new DeliverItContext(options);
            deliveryService = new DeliveryService(dbContext);
            dbContext.Deliveries.Add(new Delivery()
            {
                OrderId      = 1,
                Status       = DeliveryStatus.Created,
                AccessWindow = new AccessWindow
                {
                    StartTime = DateTime.Now,
                    EndTime   = DateTime.Now.AddHours(2)
                },
                Sender = new Partner
                {
                    Name = "Ikea"
                },
                Recipient = new User
                {
                    FirstName = "John",
                    LastName  = "Doe",
                    Email     = "*****@*****.**",
                    Address   = "Test Street, London",
                    Phone     = "0845345"
                }
            });
            dbContext.SaveChanges();
        }
コード例 #13
0
        public DeliveryController(ITransportOrderService transportOrderService,
                                      IWorkflowStatusService workflowStatusService,
                                      IDispatchAllocationService dispatchAllocationService,
                                      IDeliveryService deliveryService,
            IDispatchService dispatchService,
            IDeliveryDetailService deliveryDetailService,
            INotificationService notificationService, IActionTypesService actionTypeService, IUserAccountService userAccountService,
            Cats.Services.EarlyWarning.ICommodityService commodityService, Cats.Services.EarlyWarning.IUnitService unitService,
            Cats.Services.Transaction.ITransactionService transactionService, IBusinessProcessService businessProcessService, IApplicationSettingService applicationSettingService, ITransporterPaymentRequestService transporterPaymentRequestService)
        {
            _transportOrderService = transportOrderService;
            _workflowStatusService = workflowStatusService;
            _dispatchAllocationService = dispatchAllocationService;
            _deliveryService = deliveryService;
            _dispatchService = dispatchService;
            _deliveryDetailService = deliveryDetailService;
            _notificationService = notificationService;

            _actionTypeService = actionTypeService;

            _userAccountService = userAccountService;
            _commodityService = commodityService;
            _unitService = unitService;
            _transactionService = transactionService;
            _businessProcessService = businessProcessService;
            _applicationSettingService = applicationSettingService;
            _transporterPaymentRequestService = transporterPaymentRequestService;
        }
コード例 #14
0
        public WoredaStockDistributionController(
            IUtilizationHeaderSerivce utilizationService,
            IProgramService programService,
            IUtilizationDetailSerivce utilizationDetailSerivce, 
            UserAccountService userAccountService,
            ICommonService commonService, 
            IRegionalRequestService regionalRequestService,
            IReliefRequisitionDetailService reliefRequisitionDetailService,
            IReliefRequisitionService reliefRequisitionService,

            ITransactionService transactionService, IDispatchService dispatchService, IDeliveryService deliveryService, ILossReasonService lossReasonService, IPlanService planService, IAdminUnitService adminUnitService)
        {
            _utilizationService = utilizationService;
            _programService = programService;
            _utilizationDetailSerivce = utilizationDetailSerivce;
            _userAccountService = userAccountService;
            _commonService = commonService;
            _regionalRequestService = regionalRequestService;
            _reliefRequisitionDetailService = reliefRequisitionDetailService;
            _reliefRequisitionService = reliefRequisitionService;
            _transactionService = transactionService;
            _dispatchService = dispatchService;
            _deliveryService = deliveryService;
            _lossReasonService = lossReasonService;
            _planService = planService;
            _adminUnitService = adminUnitService;
        }
コード例 #15
0
 public OrdersController(IOrderingService orderingService, IDeliveryService deliveryService, IMapper mapper, IUnitOfWorkFactory unitOfWorkFactory)
 {
     _orderingService   = orderingService;
     _deliveryService   = deliveryService;
     _mapper            = mapper;
     _unitOfWorkFactory = unitOfWorkFactory;
 }
コード例 #16
0
 public UnitTestDelieverService()
 {
     _srv = new DelieverService(new MyCustomPackageManager(),
                                new MyCustomProvider(),
                                new MyCustomProvider(),
                                new MyCustomProvider());
 }
コード例 #17
0
 public InvoiceController(
     IInvoiceService invoiceService,
     IDeliveryService deliveryService)
 {
     _invoiceService  = invoiceService;
     _deliveryService = deliveryService;
 }
コード例 #18
0
        public Delivery(IDeliveryService deliveryService)
        {
            //use of "this" Keyword

            this.deliveryService = deliveryService;
            this.deliver();
        }
コード例 #19
0
ファイル: FollowUpViewModel.cs プロジェクト: abuahmed/PDEX
 public void Load()
 {
     CleanUp();
     _deliveryService = new DeliveryService();
     LoadStaffs();
     GetDeliverys();
 }
コード例 #20
0
 public ProcessedOrder(IDeliveryService Service, List <IProduct> Products, IShippingLocation Location)
     : base(Service, Products, Location)
 {
     this.DeliveryService  = Service;
     this.Products         = Products;
     this.ShippingLocation = Location;
 }
コード例 #21
0
 public ReceiptController(IReceiptService receiptService, IOrderService orderService, IProductService productService, IDeliveryService deliveryService)
 {
     this.receiptService  = receiptService;
     this.orderService    = orderService;
     this.productService  = productService;
     this.deliveryService = deliveryService;
 }
コード例 #22
0
ファイル: TaxiController.cs プロジェクト: eliodecolli/M19G2
 public TaxiController(IDeliveryService deliveryService, IOrdersService ordersService, IUserService userService, IDeliveryAutomation deliveryAutomation)
 {
     this.deliveryAutomation = deliveryAutomation;
     this.deliveryService    = deliveryService;
     this.ordersService      = ordersService;
     this.userService        = userService;
 }
コード例 #23
0
 public CartSlideoutController(
     IDeliveryService deliveryService,
     INopDataProvider nopDataProvider
     )
 {
     _deliveryService = deliveryService;
     _nopDataProvider = nopDataProvider;
 }
コード例 #24
0
 /// <summary>
 /// Used to caclulate the cost of shipping a list of products to a location using a delivery service
 /// </summary>
 /// <param name="Service"></param>
 /// <param name="Products"></param>
 /// <param name="Location"></param>
 public DefaultShippingService(IDeliveryService Service, List <IProduct> Products, IShippingLocation Location)
 {
     DeliveryService  = Service;
     this.Products    = Products;
     ShippingLocation = Location;
     this.ShippingLocation.StartZipCode       = 60605;
     this.ShippingLocation.DestinationZipCode = 60805;
 }
コード例 #25
0
 public OrderService(
     IAppDbContext context,
     IDeliveryService deliveryService,
     ILogger <OrderService> logger) : base(logger)
 {
     _context         = context;
     _deliveryService = deliveryService;
 }
コード例 #26
0
 public HillaPayController(IOrderService orderSrv, IPaymentService paymentSrv, IGatewayService gatewaySrv, IConfiguration configuration, IDeliveryService deliverySrv)
 {
     _orderSrv      = orderSrv;
     _configuration = configuration;
     _paymentSrv    = paymentSrv;
     _gatewaySrv    = gatewaySrv;
     _deliverySrv   = deliverySrv;
 }
コード例 #27
0
 public DeliveriesController(IDeliveryService deliveryService,
                             IExecutionContext executionContext,
                             ILogger <DeliveriesController> logger)
 {
     _deliveryService  = deliveryService;
     _executionContext = executionContext;
     _logger           = logger;
 }
コード例 #28
0
ファイル: DeliveriesEventManager.cs プロジェクト: RetiSpA/FOK
 private void HandleOrderAcceptedEvent(OrderAcceptedEvent orderAccepted)
 {
     using (var scope = _serviceScopeFactory.CreateScope())
     {
         IDeliveryService deliveryService = scope.ServiceProvider.GetRequiredService <IDeliveryService>();
         deliveryService.AddDelivery(DeliveriesMapper.MapNewDeliveryEvent(orderAccepted));
     }
 }
コード例 #29
0
        public FormMakeDelivery(IDeliveryService serviceS, IResourceService serviceC, IMainService serviceM)
        {
            InitializeComponent();

            this.serviceS = serviceS;
            this.serviceC = serviceC;
            this.serviceM = serviceM;
        }
コード例 #30
0
 public StaffController(ICustomerService _customerService, IDeliveryService _deliveryService,
                        IOrderService _orderService, IProductInventoryService _productInventoryService)
 {
     customerService         = _customerService;
     deliveryService         = _deliveryService;
     productInventoryService = _productInventoryService;
     orderService            = _orderService;
 }
コード例 #31
0
 public HomeController(ILogger <HomeController> logger,
                       IUserService userService,
                       IDeliveryService deliveryService)
 {
     _logger          = logger;
     _userService     = userService;
     _deliveryService = deliveryService;
 }
コード例 #32
0
 public DeliveryController(IAuthorizationService authorizationService, IInvoiceDetailService invoiceDetailService, IMerchantService merchantService, IDeliveryService deliveryService, IUnitOfWork unitOfWork)
 {
     _authorizationService = authorizationService;
     _merchantService      = merchantService;
     _deliveryService      = deliveryService;
     _invoiceDetailService = invoiceDetailService;
     _unitOfWork           = unitOfWork;
 }
コード例 #33
0
        public void SetUp()
        {
            clientRepositoryMock = new Mock <IClientRepository>();
            orderRepositoryMock  = new Mock <IOrderRepository>();
            driverRepositoryMock = new Mock <IDriverRepository>();
            deliveryFactoryMock  = new Mock <IDeliveryFactory>();

            deliveryService = new DeliveryService(clientRepositoryMock.Object, driverRepositoryMock.Object, orderRepositoryMock.Object, deliveryFactoryMock.Object);
        }
 public CatalogueViewModule(ICatalogueViewService catatalogueService, ICommerceService commerceService, ICatalogueModificationService editService, IAccountService accountService, IOrderService orderService, IEmailSender emailSender, IDeliveryService deliveryService, ICultureService cultureService, IUserService userService) {
     _catalogueService = catatalogueService;
     _commerceService = commerceService;
     _editService = editService;
     _accountService = accountService;
     _orderService = orderService;
     _emailSender = emailSender;
     _deliveryService = deliveryService;
     _cultureService = cultureService;
     _userService = userService;
     ParsePathInfo();
 }
        public ECommerceModule(ICommerceService commerceService, ICatalogueViewService catatalogueService, ICommerceDao dao, IExtCommonDao commonDao, IBasketRules rules, ICatalogueModificationService editService, IAccountService accountService, IOrderService orderService, IEmailSender emailSender, IDeliveryService deliveryService, ICultureService cultureService, IUserService userService)
            : base(catatalogueService, commerceService, editService, accountService, orderService, emailSender, deliveryService, cultureService, userService) {

            _dao = dao;
            _commonDao = commonDao;
            _rules = rules; 
            
            //we now get payment providers from the DB to make it more user friendly
            //PaymentProviders = CommerceService.GetEnabledPaymentProviders();
           

        }
コード例 #36
0
 public TransporterPerformanceController(ITransportOrderService transportOrderService,IUserAccountService userAccountService,
                                       IDispatchAllocationService dispatchAllocationService, ITransportOrderDetailService transportOrderDetailService,
                                       IHubService hubService, IAdminUnitService adminUnitService,IDispatchService dispatchService,IDeliveryService deliveryService)
 {
     _transportOrderService = transportOrderService;
     _userAccountService = userAccountService;
     _dispatchAllocationService = dispatchAllocationService;
     _transportOrderDetailService = transportOrderDetailService;
     _hubService = hubService;
     _adminUnitService = adminUnitService;
     _dispatchService = dispatchService;
     _deliveryService = deliveryService;
 }
コード例 #37
0
 public ContractAdministrationController(IPaymentRequestService paymentRequestService, ITransporterService transporterService,
     ITransportOrderService transportOrderService, IUserAccountService userAccountService, IDispatchAllocationService dispatchAllocationService, 
     IWorkflowStatusService workflowStatusService, IDeliveryService distributionService, IBidWinnerService bidWinnerService,
     Cats.Services.EarlyWarning.IAdminUnitService adminUnitService)
 {
     _adminUnitService = adminUnitService;
     _paymentRequestService = paymentRequestService;
     _transporterService = transporterService;
     _transportOrderService = transportOrderService;
     _userAccountService = userAccountService;
     _dispatchAllocationService = dispatchAllocationService;
     _workflowStatusService = workflowStatusService;
     _distributionService = distributionService;
     _bidWinnerService = bidWinnerService;
 }
コード例 #38
0
 public DeliveryReconcileController(IDispatchAllocationService dispatchAllocationService,
                               IDeliveryService deliveryService,
     IDispatchService dispatchService,
     Cats.Services.EarlyWarning.ICommodityService commodityService, Cats.Services.EarlyWarning.IUnitService unitService, 
     Cats.Services.Transaction.ITransactionService transactionService,
     Cats.Services.EarlyWarning.IAdminUnitService adminUnitService, Cats.Services.EarlyWarning.IFDPService fdpService,
     Cats.Services.Logistics.IDeliveryReconcileService deliveryReconcileService, IUserAccountService userAccountService)
 {
     _dispatchAllocationService = dispatchAllocationService;
     _deliveryService = deliveryService;
     _dispatchService = dispatchService;
     _commodityService = commodityService;
     _unitService = unitService;
     _transactionService = transactionService;
     _adminUnitService = adminUnitService;
     _fdpService = fdpService;
     _deliveryReconcileService = deliveryReconcileService;
     _userAccountService = userAccountService;
 }
コード例 #39
0
 ////
 // GET: /Sales/Delivery/
 public DeliveryController()
 {
     var dbfactory = new DatabaseFactory();
     _DeliveryService = new DeliveryService(new DeliveryRepository(dbfactory), new DeliveryDetailRepository(dbfactory), new SalesOrderDetailRepository(dbfactory),
         new UnitOfWork(dbfactory));
     _DeliveryDetailsService = new DeliveryDetailsService(new DeliveryDetailsRepository(dbfactory), new ChartOfProductRepository(dbfactory),
         new UnitOfMeasurementRepository(dbfactory), new DeliveryRepository(dbfactory), new SalesOrderDetailRepository(dbfactory),
         new UnitOfWork(dbfactory));
     _SecCompanyService = new SecCompanyService(new SecCompanyRepository(dbfactory), new UnitOfWork(dbfactory));
     _salesOrderService = new SalesOrderService(new SalesOrderRepository(dbfactory),
        new SalesOrderDetailRepository(dbfactory),
        new SalesOrderApprovalRepository(dbfactory),
        new NotificationRepository(dbfactory),
        new NotificationDetailRepository(dbfactory),
        new UnitOfWork(dbfactory));
     _officeService = new OfficeService(new OfficeRepository(dbfactory), new UnitOfWork(dbfactory));
     _hrmEmployeeService = new HrmEmployeeService(new HrmEmployeeRepository(dbfactory), new UnitOfWork(dbfactory));
     _objRptInvoiceService = new RptInvoiceService(new DistributorRepository(dbfactory), new UnitOfWork(dbfactory));
     _objChallenReportService = new ChallenReportService(new DistributorRepository(dbfactory), new UnitOfWork(dbfactory));
 }
コード例 #40
0
 public RetailerSalesController()
 {
     var dbfactory = new DatabaseFactory();
     var unitOfWork = new UnitOfWork(dbfactory);
     _salesOrderService = new SalesOrderService(new SalesOrderRepository(dbfactory),
         new SalesOrderDetailRepository(dbfactory),
         new SalesOrderApprovalRepository(dbfactory),
         new NotificationRepository(dbfactory),
         new NotificationDetailRepository(dbfactory),
         unitOfWork);
     _officeService = new OfficeService(new OfficeRepository(dbfactory), unitOfWork);
     _SecCompanyService = new SecCompanyService(new SecCompanyRepository(dbfactory), unitOfWork);
     _FreeProductService = new FreeProductService(new FreeProductRepository(dbfactory), new ChartOfProductRepository(dbfactory),
         new UnitOfMeasurementRepository(dbfactory), unitOfWork);
     _hrmEmployeeService = new HrmEmployeeService(new HrmEmployeeRepository(dbfactory), unitOfWork);
     _salesDiscountSettingService = new SalesDiscountSettingService(new SalesDiscountSettingRepository(dbfactory), unitOfWork);
     _PartyCreditService = new PartyCreditReportService(new InvStoreOpeningRepository(dbfactory), unitOfWork);
     _DeliveryService = new DeliveryService(new DeliveryRepository(dbfactory), new DeliveryDetailRepository(dbfactory),
         new SalesOrderDetailRepository(dbfactory), new UnitOfWork(dbfactory));
 }
コード例 #41
0
 public WoredaStockDistributionController(
     IUtilizationHeaderSerivce utilizationService,
     IUtilizationDetailSerivce utilizationDetailSerivce, 
     UserAccountService userAccountService,
     ICommonService commonService, 
     IRegionalRequestService regionalRequestService,
     IReliefRequisitionDetailService reliefRequisitionDetailService,
     IReliefRequisitionService reliefRequisitionService,
     ITransactionService transactionService, IDispatchService dispatchService, IDeliveryService deliveryService)
 {
     _utilizationService = utilizationService;
     _utilizationDetailSerivce = utilizationDetailSerivce;
     _userAccountService = userAccountService;
     _commonService = commonService;
     _regionalRequestService = regionalRequestService;
     _reliefRequisitionDetailService = reliefRequisitionDetailService;
     _reliefRequisitionService = reliefRequisitionService;
     _transactionService = transactionService;
     _dispatchService = dispatchService;
     _deliveryService = deliveryService;
 }
コード例 #42
0
ファイル: HomeController.cs プロジェクト: edgecomputing/cats
 public HomeController(IReliefRequisitionService reliefRequisitionService,
     hub.IDispatchAllocationService dispatchAllocationService,
     IUserAccountService userAccountService,
     ITransportOrderService transportOrderService,
     ITransportOrderDetailService transportOrderDetailService,
     hub.DispatchService dispatchService,
     hub.DispatchDetailService dispatchDetailService,
     ISIPCAllocationService sipcAllocationService,
     IAdminUnitService adminUnitService,
     IHRDService hrdService,
     IBidWinnerService bidWinnerService,
     IBidService bidService,
     IHRDDetailService hrdDetailService,
     IRationDetailService rationDetailService,
     IProgramService programService,
     IStockStatusService stockStatusService, IReceiptPlanDetailService receiptPlanDetailService, IDeliveryService deliveryService, IGiftCertificateDetailService giftCertificateDetailService, hub.IReceiptAllocationService receiptAllocationService)
 {
     this._reliefRequisitionService = reliefRequisitionService;
     _dispatchAllocationService = dispatchAllocationService;
     _userAccountService = userAccountService;
     _transportOrderService = transportOrderService;
     _transportOrderDetailService = transportOrderDetailService;
     _dispatchService = dispatchService;
     _dispatchDetailService = dispatchDetailService;
     _sipcAllocationService = sipcAllocationService;
     _adminUnitService = adminUnitService;
     _hrdService = hrdService;
     _bidWinnerService = bidWinnerService;
     _bidService = bidService;
     _hrdDetailService = hrdDetailService;
     _rationDetailService = rationDetailService;
     _programService = programService;
     _stockStatusService = stockStatusService;
     _receiptPlanDetailService = receiptPlanDetailService;
     _deliveryService = deliveryService;
     _giftCertificateDetailService = giftCertificateDetailService;
     _receiptAllocationService = receiptAllocationService;
 }
コード例 #43
0
 public PeopleController(IDeliveryService service)
 {
     this.service = service;
 }
コード例 #44
0
 public DeliveryController(IDeliveryService service)
 {
     this.service = service;
 }
 public ECommerceModule(ICatalogueViewService catatalogueService, ICommerceService commerceService, ICatalogueModificationService editService, IAccountService accountService, IOrderService orderService, IEmailSender emailSender, IDeliveryService deliveryService, ICultureService cultureService, IUserService userService) : base(catatalogueService, commerceService, editService, accountService, orderService, emailSender, deliveryService, cultureService, userService) {
 }
コード例 #46
0
ファイル: DeliveryController.cs プロジェクト: panlukz/logsol
 public DeliveryController(IDeliveryService deliveryService)
 {
     _deliveryService = deliveryService;
 }