public DeleteItemHandler(BasketDbContext dbContext, ItemCreatedNotificationHandler itemCreatedNotificationHandler)
 {
     _dbContext = dbContext;
     _itemCreatedNotificationHandler = itemCreatedNotificationHandler;
 }
 public AddItemHandler(BasketDbContext dbContext, IMapper mapper, ItemCreatedNotificationHandler itemCreatedNotificationHandler)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
     _itemCreatedNotificationHandler = itemCreatedNotificationHandler;
 }