Example #1
0
 public ActionsPresenter(IEnrollmentFileGenerator generator, IEnrollmentFileValidator validator,
                         IConfiguration configuration, IExceptionHandler exceptionHandler, INotifier notifier)
 {
     _generator        = generator;
     _validator        = validator;
     _configuration    = configuration;
     _exceptionHandler = exceptionHandler;
     _notifier         = notifier;
 }
 public ActionsPresenterBuilder WithGenerator(IEnrollmentFileGenerator generator)
 {
     _generator = generator;
     return(this);
 }