public ManagerAlarmListService(IConfiguration configuration, IOtherAPIService otherAPIService)
 {
     this.configuration = configuration;
     _otherAPIService   = otherAPIService;
     client             = new HttpClient();
 }
Esempio n. 2
0
 public ReportParameterService(IOtherAPIService otherAPIService)
 {
     _otherAPIService = otherAPIService;
 }
 public ReportAnalysisService(IOtherAPIService otherAPIService)
 {
     _otherAPIService     = otherAPIService;
     _productionOrderList = new List <ProductionOrder>();
 }