Beispiel #1
0
 public UpdateOrderItemV1CommandHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #2
0
 public CreateOrderV1CommandHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #3
0
 public DeleteProductV1CommandHandler(SuperFakeDbContext dbContext, IMediator mediator)
 {
     _dbContext = dbContext;
 }
Beispiel #4
0
 public CustomerBusiness(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #5
0
 public GetProductDetailsV1QueryHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #6
0
 public OrderExistsV1QueryHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #7
0
 public GetCustomerDetailsV1QueryHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #8
0
 public ProductBusiness(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #9
0
 public GetAllCustomersV1QueryHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #10
0
 public CreateProductV1CommandHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #11
0
 public GetAllProductsV1QueryHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #12
0
 public DeleteCustomerV1CommandHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #13
0
 public GetOrderItemDetailsV1QueryHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #14
0
 public ProductExistsV1QueryHandler(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #15
0
 public OrderBusiness(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #16
0
 public CreateCustomerV1CommandHandlerData(SuperFakeDbContext dbContext)
 {
     _dbContext = dbContext;
 }