public ExchangeController(IExchangeService exchangeService, ILogisticService logisticService, IExchangeClassService exchangeClassService, IExchangeExamineService exchangeExamineService) { this._exchangeService = exchangeService; this._logisticService = logisticService; this._exchangeClassService = exchangeClassService; this._exchangeExamineService = exchangeExamineService; }
public LogisticModuleServiceTests() { _inventoryRepositoryMock = new Mock <IInventoryRepository>(); _commerceServiceMock = new Mock <ICommerceService>(); _googleServiceMock = new Mock <ILocationService>(); _LogisticService = new LogisticServiceImpl( _inventoryRepositoryMock.Object, _commerceServiceMock.Object, _googleServiceMock.Object ); }
public LogisticsController(ILogisticService logisticService, IMapper mapper) : base(mapper) { _logisticService = logisticService; }
public LogisticModuleController(ILogisticService logisticService) { _logisticService = logisticService; }
public LogisticController(ILogisticService logisticService, ISysParaService sysParaService) { _logisticService = logisticService; _sysParaService = sysParaService; }
public IndustrialProcessController(ILogisticService logisticService, ISAPClient sapClient) { this.logisticService = logisticService ?? throw new ArgumentNullException(nameof(logisticService)); this.sapClient = sapClient ?? throw new ArgumentNullException(nameof(sapClient)); }