public PatrocinadorEventosController(EventoDbContext context)
 {
     _context = context;
 }
 public EventoRepository(EventoDbContext context)
 {
     _context = context;
     _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
 }
Exemple #3
0
 public RealizadorController(EventoDbContext context)
 {
     _context = context;
 }
Exemple #4
0
 public EventosController(EventoDbContext context)
 {
     _context = context;
 }