Exemple #1
0
 public BatchesController(
     IBatchSubmissionService batchSubmissionService,
     BatchesContext batchesContext)
 {
     _batchSubmissionService = batchSubmissionService;
     _batchesContext         = batchesContext;
 }
 public BatchesController(
     IBatchSubmissionService batchSubmissionService,
     BatchesContext batchesContext,
     ILogger <BatchesController> logger)
 {
     _batchSubmissionService = batchSubmissionService;
     _batchesContext         = batchesContext;
     _logger = logger;
 }