示例#1
0
 public IndustrialProcessController(ILogisticService logisticService, ISAPClient sapClient)
 {
     this.logisticService = logisticService ?? throw new ArgumentNullException(nameof(logisticService));
     this.sapClient       = sapClient ?? throw new ArgumentNullException(nameof(sapClient));
 }
示例#2
0
 public SAPService(ISAPClient sapClient)
 {
     _sapClient = sapClient;
 }