예제 #1
0
 public ClienteRepository(AcademiaContext context)
 {
     _context = context;
     _query = _context.Clientes.AsQueryable();
 }
예제 #2
0
 public PlanoRepository(AcademiaContext context)
 {
     _context = context;
     _query   = _context.Planos.AsQueryable();
 }
예제 #3
0
 public UsuarioRepository(AcademiaContext context)
 {
     _context = context;
 }
 public FuncionarioRepository(AcademiaContext context)
 {
     _context = context;
 }