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