public EnderecoRepository(AmcDbContext context) : base(context)
 {
 }
Example #2
0

        
Example #3
0
 public FornecedorRepository(AmcDbContext context) : base(context)
 {
 }
 public Repository(AmcDbContext amcDbContext)
 {
     _amcDbContext = amcDbContext;
     dbSet         = amcDbContext.Set <TEntity>();
 }