public ReceitaRepository(MasterchefContext context) : base(context) { }
public CategoriaRepository(MasterchefContext context) { _context = context; }
public IngredienteRepository(MasterchefContext context) : base(context) { }
public CategoriaRepository(MasterchefContext context) : base(context) { }
protected BaseRepository(MasterchefContext context) { _context = context; _dbSet = _context.Set <TEntity>(); }
public ReceitaRepository(MasterchefContext context) { _context = context; }
public UnitOfWork(MasterchefContext context) { _context = context; }