Ejemplo n.º 1
0
 public AddProductCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 2
0
 public GetProductsAvailableInVendingMachineWithCoinsQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 3
0
 public EmptyCoinsInVendingMachineCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 4
0
 public GetCoinsLeftInVendingMachineQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 5
0
 public GetCoinsForInsertQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 6
0
 public AddCoinsCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 7
0
 public CoinBackCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 8
0
 public GetTotalBalanceQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 9
0
 public GetProductsToBeAddedQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }