Exemple #1
0
 public ExchangeController(IExchangeService exchangeService, ILogisticService logisticService, IExchangeClassService exchangeClassService, IExchangeExamineService exchangeExamineService)
 {
     this._exchangeService        = exchangeService;
     this._logisticService        = logisticService;
     this._exchangeClassService   = exchangeClassService;
     this._exchangeExamineService = exchangeExamineService;
 }
Exemple #2
0
        public LogisticModuleServiceTests()
        {
            _inventoryRepositoryMock = new Mock <IInventoryRepository>();
            _commerceServiceMock     = new Mock <ICommerceService>();
            _googleServiceMock       = new Mock <ILocationService>();

            _LogisticService = new LogisticServiceImpl(
                _inventoryRepositoryMock.Object,
                _commerceServiceMock.Object,
                _googleServiceMock.Object
                );
        }
Exemple #3
0
 public LogisticsController(ILogisticService logisticService,
                            IMapper mapper) : base(mapper)
 {
     _logisticService = logisticService;
 }
Exemple #4
0
 public LogisticModuleController(ILogisticService logisticService)
 {
     _logisticService = logisticService;
 }
 public LogisticController(ILogisticService logisticService, ISysParaService sysParaService)
 {
     _logisticService = logisticService;
     _sysParaService  = sysParaService;
 }
Exemple #6
0
 public IndustrialProcessController(ILogisticService logisticService, ISAPClient sapClient)
 {
     this.logisticService = logisticService ?? throw new ArgumentNullException(nameof(logisticService));
     this.sapClient       = sapClient ?? throw new ArgumentNullException(nameof(sapClient));
 }