public RestaurantReviewDbRepository(OdeToFoodContext context)
 {
     _context = context;
 }
예제 #2
0
 public SqlRestaurantDate(OdeToFoodContext odeToFoodContext)
 {
     _context = odeToFoodContext;
 }
예제 #3
0
 public Repository(DbContext context)
 {
     _context = (OdeToFoodContext)context;
 }
예제 #4
0
 public SqlRestaurantData(OdeToFoodContext db)
 {
     this.db = db;
 }
 public ReviewDBRespository(OdeToFoodContext context)
 {
     _context = context;
 }
예제 #6
0
 public CafeReviewDbRepository(OdeToFoodContext context)
 {
     _context = context;
 }