コード例 #1
0
 public AddProductCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #2
0
 public GetProductsAvailableInVendingMachineWithCoinsQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #3
0
 public EmptyCoinsInVendingMachineCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #4
0
 public GetCoinsLeftInVendingMachineQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #5
0
 public GetCoinsForInsertQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #6
0
 public AddCoinsCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #7
0
 public CoinBackCommandHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #8
0
 public GetTotalBalanceQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #9
0
 public GetProductsToBeAddedQueryHandler(IVendingMachineDbContext dbContext)
 {
     _dbContext = dbContext;
 }