Exemple #1
0
 public CreateClienteCommand(IUnitOfWork uow, IClienteFactory factory)
 {
     _uow     = uow ?? throw new ArgumentNullException(nameof(uow));
     _factory = factory ?? throw new ArgumentNullException(nameof(factory));
 }
Exemple #2
0
 public ClienteOrchestrator(IServiceBus serviceBus, IClienteFactory clienteFactory)
 {
     this._serviceBus     = serviceBus;
     this._clienteFactory = clienteFactory;
 }
Exemple #3
0
 public ClienteCreatedEventHandler(IClienteFactory clienteFactory,
                                   IHubContext <ClientiHub> clientiHubContext)
 {
     this._clienteFactory    = clienteFactory;
     this._clientiHubContext = clientiHubContext;
 }
Exemple #4
0
 public ClienteCreatedEventHandler(IClienteFactory clienteFactory)
 {
     this._clienteFactory = clienteFactory;
 }