public ParticipantesController(EventosContext context) { this.EventosDao = new EventosDaoImpl(context); this.ParticipantesDao = new ParticipantesDaoImpl(context); }
public RepositorioConvidado(EventosContext eventosContext, IConfiguration configuration) : base(eventosContext) { _eventosContext = eventosContext; _configuration = configuration; _stringConexao = _configuration.GetConnectionString("DefaultConnection"); }
public EventosController(EventosContext context, CasasDeShowContext cacontext, IngressoContext ingcontext) { _context = context; _cacontext = cacontext; _ingcontext = ingcontext; }
public ClienteRepository(EventosContext context) : base(context) { }
public Repository(EventosContext context) { Db = context; DbSet = Db.Set <TEntity>(); }
public OrganizadorRepository(EventosContext context) : base(context) { }
public EmpresaRepository(EventosContext context) : base(context) { }
//EventosContext é passado por injeção de dependencia public EventosController(EventosContext context) { this.EventosDao = new EventosDaoImpl(context); }
public RedeSocialRepository(EventosContext context) : base(context) { _context = context; }
public UnityOfwork(EventosContext context) { _context = context; }
public EventosController(EventosContext context) { this.Context = context; }
public PalestranteRepository(EventosContext context) : base(context) { _context = context; _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking; }
protected Repository(EventosContext context) { _context = context; _dbSet = context.Set <TEntity>(); }
public LoteRepository(EventosContext context) : base(context) { _context = context; }
public RepositoryBase(EventosContext context) { _context = context; _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking; }
//EventosContext é passado por Injecao de Dependencia public EventosController(EventosContext ctx) { _eventosDaoImpl = new EventosDaoImpl(ctx); }
public UsuarioRepository(EventosContext context) : base(context) { }
protected Repository(EventosContext context) { Db = context; DbSet = Db.Set <TEntity>(); }
public ParticipantesController(EventosContext ctx) { _eventosDaoImpl = new EventosDaoImpl(ctx); _participanteDaoImpl = new ParticipantesDaoImpl(ctx); }
public UnitOfWork(EventosContext context) { _context = context; }
protected Repository(EventosContext db) { Db = db; DbSet = Db.Set <TEntity>(); }
public EventoRepository(EventosContext context) : base(context) { }
public RepositorioBase(EventosContext eventosContexto) { _eventosContexto = eventosContexto; }