public DeleteProductCommandHandler(ICQRSDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public GetCustomersListQueryHandler(ICQRSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #3
0
 public DeleteCustomerCommandHandler(ICQRSDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public Handler(ICQRSDbContext context)
 {
     _context = context;
 }
 public Handler(ICQRSDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
 public GetAllProductsQueryHandler(ICQRSDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #7
0
 public GetCustomerDetailQueryHandler(ICQRSDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public GetCategoryPreviewQueryHandler(ICQRSDbContext context)
 {
     _context = context;
 }