Exemplo n.º 1
0
 public GetShoppingLists(
     IGrocerlyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public CreateShopper(IGrocerlyDbContext dbContext, IIdGenerator idGenerator, IClock clock)
 {
     _dbContext   = dbContext;
     _idGenerator = idGenerator;
     _clock       = clock;
 }
 public PickShoppingListItem(IGrocerlyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AddWishListItem(IGrocerlyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public RemoveShoppingListItem(
     IGrocerlyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 6
0
 public RemoveWishListItem(IGrocerlyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public GetShopperProfile(IGrocerlyDbContext dbContext)
 {
     _dbContext = dbContext;
 }