public RecordatorioLlamadaController(IMediator mediator,
                                      IImpresionLog impresionLog,
                                      IHeaderConfiguration headerConfiguration)
 {
     _mediator            = mediator ?? throw new ArgumentNullException(nameof(mediator));
     _impresionLog        = impresionLog ?? throw new ArgumentNullException(nameof(impresionLog));
     _headerConfiguration = headerConfiguration ?? throw new ArgumentNullException(nameof(headerConfiguration));
 }
 public ReunionController(IMediator mediator,
                          IImpresionLog impresionLog,
                          IHeaderConfiguration headerConfiguration,
                          IConsolidadoIntermediarioQueries consolidadoIntermediarioQueries)
 {
     _mediator                        = mediator ?? throw new ArgumentNullException(nameof(mediator));
     _impresionLog                    = impresionLog ?? throw new ArgumentNullException(nameof(impresionLog));
     _headerConfiguration             = headerConfiguration ?? throw new ArgumentNullException(nameof(headerConfiguration));
     _consolidadoIntermediarioQueries = consolidadoIntermediarioQueries ?? throw new ArgumentNullException(nameof(consolidadoIntermediarioQueries));
 }
 public CalendarioController(ILogger <CalendarioController> logger,
                             ICalendarioQueries calendarioQueries,
                             IImpresionLog impresionLog,
                             IHeaderConfiguration headerConfiguration)
 {
     _logger              = logger ?? throw new ArgumentNullException(nameof(logger));
     _calendarioQueries   = calendarioQueries ?? throw new ArgumentNullException(nameof(calendarioQueries));
     _impresionLog        = impresionLog ?? throw new ArgumentNullException(nameof(impresionLog));
     _headerConfiguration = headerConfiguration ?? throw new ArgumentNullException(nameof(headerConfiguration));
 }
 public CitaController(IMediator mediator,
                       ILogger <CitaController> logger,
                       ICitaQueries citaQueries,
                       IImpresionLog impresionLog,
                       IHeaderConfiguration headerConfiguration)
 {
     _mediator            = mediator ?? throw new ArgumentNullException(nameof(mediator));
     _logger              = logger ?? throw new ArgumentNullException(nameof(logger));
     _citaQueries         = citaQueries ?? throw new ArgumentNullException(nameof(citaQueries));
     _impresionLog        = impresionLog ?? throw new ArgumentNullException(nameof(impresionLog));
     _headerConfiguration = headerConfiguration ?? throw new ArgumentNullException(nameof(headerConfiguration));
 }
Exemple #5
0
 public ProspectoController(IMediator mediator,
                            IConsolidadoIntermediarioQueries consolidadoIntermediarioQueries,
                            IProspectoQueries prospectoQueries,
                            IGeneralesQueries generalesQueries,
                            ILogger <ProspectoController> logger,
                            IImpresionLog impresionLog,
                            IHeaderConfiguration headerConfiguration)
 {
     _mediator = mediator ?? throw new ArgumentNullException(nameof(mediator));
     _consolidadoIntermediarioQueries = consolidadoIntermediarioQueries ?? throw new ArgumentNullException(nameof(consolidadoIntermediarioQueries));
     _prospectoQueries    = prospectoQueries ?? throw new ArgumentNullException(nameof(prospectoQueries));
     _generalesQueries    = generalesQueries ?? throw new ArgumentNullException(nameof(generalesQueries));
     _logger              = logger ?? throw new ArgumentNullException(nameof(logger));
     _impresionLog        = impresionLog ?? throw new ArgumentNullException(nameof(impresionLog));
     _headerConfiguration = headerConfiguration ?? throw new ArgumentNullException(nameof(headerConfiguration));
 }