public StoreController(ShopListDbContext dBContext)
 {
     context = dBContext;
 }
Beispiel #2
0
 public AbstractCRUDCreator(ShopListDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public ItemController(ShopListDbContext dbContext)
 {
     context = dbContext;
 }
 public CheckListRepository(ShopListDbContext context) : base(context)
 {
 }
 public ChecklistController(ShopListDbContext dbcontext)
 {
     context = dbcontext;
 }
 public UsersLoginHistoryRepsitory(ShopListDbContext context) : base(context)
 {
 }
 public ShoppingListRepository(ShopListDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public UserAuthorisationRepository(ShopListDbContext context) : base(context)
 {
 }