Пример #1
0
 public UpdateClienteCommandHandler(IClienteRepository clienteRepository, IDomainNotificationContext notificationContext, IMapper mapper, ILogger <UpdateClienteCommandHandler> logger)
 {
     _clienteRepository   = clienteRepository;
     _notificationContext = notificationContext;
     _mapper = mapper;
     _logger = logger;
 }
Пример #2
0
 public ToDoController(IMediator bus, IDomainNotificationContext notificationContext,
                       ILogger <ToDoController> logger, IExampleGetToDoService exampleGetToDoService)
 {
     _bus = bus;
     _notificationContext = notificationContext;
     _logger = logger;
     _exampleGetToDoService = exampleGetToDoService;
 }
 public DeleteClienteCommandHandler(IClienteRepository clienteRepository, IDomainNotificationContext notificationContext, ILogger <DeleteClienteCommandHandler> logger)
 {
     _clienteRepository   = clienteRepository;
     _notificationContext = notificationContext;
     _logger = logger;
 }
Пример #4
0
 public ExampleGetToDoController(IMediator bus, IDomainNotificationContext notificationContext, ILogger <ExampleGetToDoController> logger)
 {
     _bus = bus;
     _notificationContext = notificationContext;
     _logger = logger;
 }
 public ValidationRequestBehavior(IEnumerable <IValidator <TRequest> > validators, IDomainNotificationContext notificationContext)
 {
     _validators          = validators;
     _notificationContext = notificationContext;
 }
Пример #6
0
 public ImportaDadosController(IDomainNotificationContext <DomainNotification> domainNotification, IImportaDadosAppService importDataAppService, ILogger <ImportaDadosController> logger) : base(domainNotification, logger)
 {
     _importDataAppService = importDataAppService;
 }
Пример #7
0
 public AssertionConcern(IDomainNotificationContext <DomainNotification> domainNotificationContext)
 {
     _domainNotificationContext = domainNotificationContext;
 }
 public UserController(IMediator mediator, IDomainNotificationContext notificationContext)
 {
     _mediator            = mediator;
     _notificationContext = notificationContext;
 }
Пример #9
0
 public ClienteController(INotifier notifier, ILogger <ClienteController> logger, IMediator bus, IDomainNotificationContext notificationContext) : base(notifier)
 {
     _logger = logger;
     _bus    = bus;
     _notificationContext = notificationContext;
 }
Пример #10
0
 public EstatisticasController(IDomainNotificationContext <DomainNotification> domainNotification,
                               IEstatisticasAppService timeAppService,
                               ILogger <EstatisticasController> logger) : base(domainNotification, logger)
 {
     _estatisticasAppService = timeAppService;
 }
 public ClassificacaoFactory(ILogger <ClassificacaoFactory> logger, IDomainNotificationContext <DomainNotification> domainNotificationContext)
 {
     _domainNotificationContext = domainNotificationContext;
     _logger = logger;
 }
Пример #12
0
 public BaseController(IDomainNotificationContext <DomainNotification> domainNotification, ILogger <T> logger)
 {
     _domainNotification = domainNotification;
     _logger             = logger;
 }
Пример #13
0
 public UserController(IMediator bus, IDomainNotificationContext notificationContext)
 {
     _bus = bus;
     _notificationContext = notificationContext;
 }
Пример #14
0
 public UnityOfWork(ILogger <UnityOfWork> logger, DatabaseContext context, IDomainNotificationContext <DomainNotification> domainNotificationContext)
 {
     _context = context;
     _domainNotificationContext = domainNotificationContext;
     _logger = logger;
 }