Beispiel #1
0
 public GetCategoryQueryHandler(IShopAdoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public DeleteGoodCommandHandler(IShopAdoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #3
0
 public UpdateManufacturerCommandHandler(IShopAdoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public UpdateCategoryCommandHandler(IShopAdoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetManufacturerQueryHandler(IShopAdoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #6
0
 public GetGoodsAsListQueryHandler(IShopAdoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }