public CreateCustomerCommandHandler(MediatDbContext context, IMapper mapper, IMediator mediator)
 {
     _context = context;
     _mapper  = mapper;
     // added
     _mediator = mediator;
 }
Example #2
0
 public GetCustomersQueryHandler(MediatDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }