public ObjetivoRepository()
 {
     _ctx = new EduXContext();
 }
Exemple #2
0
 public DicaController(EduXContext context)
 {
     _context = context;
 }
 public UsuarioRepository()
 {
     _ctx = new EduXContext();
 }
Exemple #4
0
 public InstituicaoRepository()
 {
     //Atribuição por instaciação variavel = new objeto
     _ctx = new EduXContext();
 }
Exemple #5
0
 public PerfilRepository()
 {
     _ctx = new EduXContext();
 }
Exemple #6
0
 public CategoriaRepository()
 {
     _ctx = new EduXContext();
 }
 public UsuarioController(EduXContext context)
 {
     _context = context;
 }
Exemple #8
0
 public PopularTable()
 {
     contexto = new EduXContext();
     Popular();
 }
 public TurmaRepository()
 {
     _context = new EduXContext();
 }
 // Definimos um método construtor para poder passar essas configs
 public LoginController(IConfiguration config)
 {
     _config  = config;
     _context = new EduXContext();
 }
Exemple #11
0
 public DicaRepository()
 {
     _ctx = new EduXContext();
 }
Exemple #12
0
 public CurtidaRepository()
 {
     contextinho = new EduXContext();
 }
Exemple #13
0
 public NewsletterRepository()
 {
     _ctx = new EduXContext();
 }
Exemple #14
0
 protected Repository(EduXContext context)
 {
     _context = context;
 }
Exemple #15
0
 public ObjetivoRepository()
 {
     //Instanciamos o contexto para que seja possível trabalhar suas propriedades
     context = new EduXContext();
 }
Exemple #16
0
 public PostagemController(EduXContext context)
 {
     _context = context;
 }
Exemple #17
0
 public CursoRepository()
 {
     _ctx = new EduXContext();
 }
 public CategoriaController(EduXContext context)
 {
     _context = context;
 }
 public AlunoTurmaRepository()
 {
     _ctx = new EduXContext();
 }
Exemple #20
0
 public InstituicaoRepository()
 {
     _ctx = new EduXContext();
 }
Exemple #21
0
 public ProfessorTurmaRepository()
 {
     _ctx = new EduXContext();
 }
 public DicaRepository()
 {
     context = new EduXContext();
 }