Exemplo n.º 1
0
 public CreateProductV1CommandHandler(SuperFakeProductsDbContext dbContext, IMediator mediator)
 {
     _dbContext = dbContext;
     _mediator  = mediator;
 }
Exemplo n.º 2
0
 public GetProductDetailsV1QueryHandler(SuperFakeProductsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 3
0
 public OrderUpdatedV1NotificationHandler(SuperFakeProductsDbContext dbContext)
 {
     _dbContext = dbContext;
 }