コード例 #1
0
 public CategoriesController(MasterChefContext context)
 {
     _context = context;
 }
コード例 #2
0
 public ReceitaRepository(MasterChefContext context)
     : base(context)
 {
 }
コード例 #3
0
 public CategoriaRepository(MasterChefContext context)
     : base(context)
 {
 }
コード例 #4
0
 public RecipesController(MasterChefContext context)
 {
     _context = context;
 }
コード例 #5
0
 public RepositoryBase(MasterChefContext context)
 {
     _context = context;
     DbSet    = context.Set <TEntity>();
 }