コード例 #1
0
 public GenericRepository(RecipesDB context)
 {
     _context = context;
     table    = _context.Set <T>();
 }
コード例 #2
0
 public CategoryRepository(RecipesDB context) : base(context)
 {
 }
コード例 #3
0
 public RecipeRepository(RecipesDB context) : base(context)
 {
 }