Example #1
0
 public CustomerCreatedV1NotificationHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #2
0
 public GetAllProductsV1QueryHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #3
0
 public GetAllOrdersV1QueryHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #4
0
 public OrderExistsV1QueryHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #5
0
 public GetOrderItemDetailsV1QueryHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #6
0
 public GetCustomerDetailsV1QueryHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #7
0
 public ProductExistsV1QueryHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #8
0
 public ProductDeletedV1NotificationHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #9
0
 public OrderUpdatedV1NotificationHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #10
0
 public GetProductDetailsV1QueryHandler(SuperFakeWebDbContext dbContext)
 {
     _dbContext = dbContext;
 }