コード例 #1
0
 public MealRepository(OurLunchContext context) : base(context)
 {
 }
コード例 #2
0
 public OrderItemRepository(OurLunchContext context) : base(context)
 {
 }
コード例 #3
0
 public BaseRepository(OurLunchContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
コード例 #4
0
 public UserRepository(OurLunchContext context) : base(context)
 {
 }
コード例 #5
0
 public OurLunchDatabase(OurLunchContext context)
 {
     _context = context;
 }
コード例 #6
0
 public OurLunchDatabase()
 {
     _context = new OurLunchContext();
 }
コード例 #7
0
 public RestaurantRepository(OurLunchContext context) : base(context)
 {
 }