Example #1
0
 public EFAdminRepository(GummyKingdomDbContext thisDb)
 {
     db = thisDb;
 }
Example #2
0
 public EFReviewRepository(GummyKingdomDbContext thisDb)
 {
     db = thisDb;
 }
Example #3
0
 public EFAdminRepository()
 {
     db = new GummyKingdomDbContext();
 }
Example #4
0
 public EFReviewRepository()
 {
     db = new GummyKingdomDbContext();
 }
 public EFUserRepository(GummyKingdomDbContext thisDb)
 {
     db = thisDb;
 }
 public EFUserRepository()
 {
     db = new GummyKingdomDbContext();
 }
Example #7
0
 public EFProductRepository(GummyKingdomDbContext thisDb)
 {
     db = thisDb;
 }
Example #8
0
 public EFProductRepository()
 {
     db = new GummyKingdomDbContext();
 }