Example #1
0
 public UnitOfWork(DNAContext context)
 {
     _context = context;
 }
Example #2
0
 public FornecedorRepository(DNAContext context) : base(context)
 {
 }
Example #3
0
 public ClienteRepository(DNAContext context)
     : base(context)
 {
 }
Example #4
0
 public EmpregadoRepository(DNAContext context)
     : base(context)
 {
 }
Example #5
0
 public Repository(DNAContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
Example #6
0
 public ExpedidorRepository(DNAContext context) : base(context)
 {
 }
Example #7
0
 public CategoriaRepository(DNAContext context) : base(context)
 {
 }