Example #1
0
 public ApplicationFlow(ILogger <ApplicationFlow> logger,
                        IJobBatchOrchestrator jobBatchOrchestrator,
                        ICommandLineValidator commandLineValidator,
                        IArgumentsParser argumentsParser,
                        IJobContext jobContext)
 {
     this.commandLineValidator = commandLineValidator;
     this.argumentsParser      = argumentsParser;
     this.jobContext           = jobContext;
     this.logger = logger;
     this.jobBatchOrchestrator = jobBatchOrchestrator;
 }
 public CommandLineValidatorTests()
 {
     validator = new CommandLineValidator();
 }