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