public GetCustomersListQueryHandler(
     IFTradersDbContext context,
     IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #2
0
 public GetProductQueryHandler(
     IFTradersDbContext context,
     IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #3
0
 public Handler(
     IFTradersDbContext context,
     IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
예제 #4
0
 public GetCategoryPreviewQueryHandler(IFTradersDbContext context)
 {
     _context = context;
 }
예제 #5
0
 public UpdateProductCommandHandler(IFTradersDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public Handler(IFTradersDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public DeleteCustomerCommandHandler(IFTradersDbContext context)
 {
     _context = context;
 }
 public GetCustomerDetailQueryHandler(IFTradersDbContext context)
 {
     _context = context;
 }