public GerarRelatorioHtmlParaPdfCommandCommandHandler(IConverter converter,
                                                       IServicoFila servicoFila,
                                                       IHtmlHelper htmlHelper)
 {
     this.converter   = converter;
     this.servicoFila = servicoFila ?? throw new ArgumentNullException(nameof(servicoFila));
     this.htmlHelper  = htmlHelper ?? throw new ArgumentNullException(nameof(htmlHelper));
 }
 public GerarRelatorioAssincronoCommandHandler(IExecucaoRelatorioService execucaoRelatorioService,
                                               IServicoFila servicoFila,
                                               ILoginService loginService,
                                               IConfiguration configuration)
 {
     this.execucaoRelatorioService = execucaoRelatorioService ?? throw new System.ArgumentNullException(nameof(execucaoRelatorioService));
     this.servicoFila   = servicoFila ?? throw new ArgumentNullException(nameof(servicoFila));
     this.loginService  = loginService ?? throw new ArgumentNullException(nameof(loginService));
     this.configuration = configuration ?? throw new ArgumentNullException(nameof(configuration));
 }
Example #3
0
 public GerarRelatorioAtaFinalExcelCommandHandler(IMediator mediator, IServicoFila servicoFila)
 {
     this.mediator    = mediator ?? throw new ArgumentNullException(nameof(mediator));
     this.servicoFila = servicoFila ?? throw new ArgumentNullException(nameof(servicoFila));
 }
Example #4
0
 public GerarCodigoCorrelacaoSGPCommandHandler(IServicoFila servicoFila)
 {
     this.servicoFila = servicoFila ?? throw new ArgumentNullException(nameof(servicoFila));
 }
Example #5
0
 public GerarRelatorioAtaFinalHtmlParaPdfCommandHandler(IConverter converter,
                                                        IServicoFila servicoFila)
 {
     this.converter   = converter;
     this.servicoFila = servicoFila ?? throw new ArgumentNullException(nameof(servicoFila));
 }
 public MonitorarStatusRelatorioUseCase(IMediator mediator, IServicoFila servicoFila)
 {
     this.mediator    = mediator ?? throw new System.ArgumentNullException(nameof(mediator));
     this.servicoFila = servicoFila ?? throw new System.ArgumentNullException(nameof(servicoFila));
 }
 public RetornarRelatorioProntoCommandHandler(IServicoFila servicoFila)
 {
     this.servicoFila = servicoFila ?? throw new System.ArgumentNullException(nameof(servicoFila));
 }
 public GerarExcelGenericoCommandHandler(IServicoFila servicoFila)
 {
     this.servicoFila = servicoFila ?? throw new ArgumentNullException(nameof(servicoFila));
 }