|
|
@ -38,13 +38,7 @@ public class AgvJobOutputService : ApplicationService |
|
|
|
private readonly IHttpClientFactory _httpClientFactory; |
|
|
|
private readonly IOptions<AgvOptions> _options; |
|
|
|
private readonly ILogger<AgvJobOutputService> _logger; |
|
|
|
private readonly AssembleIssueJobAppService _assembleIssueJobAppService; |
|
|
|
private readonly CoatingIssueJobAppService _coatingIssueJobAppService; |
|
|
|
private readonly InjectionIssueJobAppService _injectionIssueJobAppService; |
|
|
|
private readonly KittingIssueJobAppService _kittingIssueJobAppService; |
|
|
|
private readonly SparePartIssueJobAppService _sparePartIssueJobAppService; |
|
|
|
private readonly UnplannedIssueJobAppService _unplannedIssueJobAppService; |
|
|
|
private readonly UnplannedReceiptJobAppService _unplannedReceiptJobAppService; |
|
|
|
|
|
|
|
private readonly IOptions<AgvOptions> _agvOptions; |
|
|
|
|
|
|
|
|
|
|
@ -53,29 +47,18 @@ public class AgvJobOutputService : ApplicationService |
|
|
|
IHttpClientFactory httpClientFactory, |
|
|
|
IOptions<AgvOptions> options, |
|
|
|
ILogger<AgvJobOutputService> logger, |
|
|
|
AssembleIssueJobAppService assembleIssueJobAppService, |
|
|
|
CoatingIssueJobAppService coatingIssueJobAppService, |
|
|
|
InjectionIssueJobAppService injectionIssueJobAppService, |
|
|
|
KittingIssueJobAppService kittingIssueJobAppService, |
|
|
|
SparePartIssueJobAppService sparePartIssueJobAppService, |
|
|
|
UnplannedIssueJobAppService unplannedIssueJobAppService, |
|
|
|
UnplannedReceiptJobAppService unplannedReceiptJobAppService |
|
|
|
IOptions<AgvOptions> agvOptions |
|
|
|
|
|
|
|
) |
|
|
|
{ |
|
|
|
_assembleIssueJobAppService = assembleIssueJobAppService; |
|
|
|
_coatingIssueJobAppService = coatingIssueJobAppService; |
|
|
|
_injectionIssueJobAppService = injectionIssueJobAppService; |
|
|
|
_kittingIssueJobAppService = kittingIssueJobAppService; |
|
|
|
_sparePartIssueJobAppService = sparePartIssueJobAppService; |
|
|
|
_unplannedIssueJobAppService = unplannedIssueJobAppService; |
|
|
|
_unplannedReceiptJobAppService = unplannedReceiptJobAppService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_logger = logger; |
|
|
|
_unitOfWorkManager = unitOfWorkManager; |
|
|
|
_httpClientFactory = httpClientFactory; |
|
|
|
_options = options; |
|
|
|
_agvOptions = agvOptions; |
|
|
|
} |
|
|
|
|
|
|
|
[HttpPost("test-callagv-Coating")] |
|
|
|