public MealsController(LunchDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public RepositoryBase(LunchDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #3
0
 public RestaurantRepository(LunchDbContext dbContext) : base(dbContext)
 {
 }
예제 #4
0
 public UserRepository(LunchDbContext dbContext) : base(dbContext)
 {
 }
 public DishesController(LunchDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public PoolRepository(LunchDbContext dbContext) : base(dbContext)
 {
 }
예제 #7
0
 public VoteRepository(LunchDbContext dbContext) : base(dbContext)
 {
 }