Exemplo n.º 1
0
 public BaseRepository(RepiceDbContext context)
 {
     _context = context;
     _dbSet   = context.Set <TEntity>();
 }
Exemplo n.º 2
0
 public AmountRepository(RepiceDbContext context) : base(context)
 {
 }
Exemplo n.º 3
0
 public RecipeRepository(RepiceDbContext context) : base(context)
 {
 }
 public IngredientRepository(RepiceDbContext context) : base(context)
 {
 }
Exemplo n.º 5
0
 public CategoryRepository(RepiceDbContext context) : base(context)
 {
 }
Exemplo n.º 6
0
 public UnitOfWork(RepiceDbContext repiceDbContext)
 {
     _context = repiceDbContext;
 }
 public DirectionRepository(RepiceDbContext context) : base(context)
 {
 }