Exemple #1
0
 public BancaServerGrpc(
     ITransaccionServices transaccionServices,
     ILogger <BancaServerGrpc> logger)
 {
     this.transaccionServices = transaccionServices;
     this.logger = logger;
 }
Exemple #2
0
 public TransaccionController(ILogger <TransaccionController> logger,
                              ITransaccionServices transaccionServices)
 {
     _logger = logger;
     _transaccionServices = transaccionServices;
 }
Exemple #3
0
 public TransaccionController(ITransaccionServices transaccionServices, IMapper mapper)
 {
     _transaccionServices = transaccionServices;
     _mapper = mapper;
 }
 public TransactionController(ITransaccionServices transaccionServices)
 {
     _transaccionServices = transaccionServices;
 }
 public TransactionEventHandler(ITransaccionServices services)
 {
     _services = services;
 }