Ejemplo n.º 1
0
 public EmailRepository(ERDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public EmployeeRepository(ERDbContext db) : base(db)
 {
 }
Ejemplo n.º 3
0
 public ParticipantRepository(ERDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public RecordRepository(ERDbContext db) : base(db)
 {
 }
Ejemplo n.º 5
0
 public EventRepository(ERDbContext context)
 {
     _context = context;
 }
 public FormRepository(ERDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 7
0
 public HistoryRepository(ERDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 8
0
 public Repository(ERDbContext db)
 {
     Db    = db;
     DbSet = db.Set <TEntity>();
 }
 public UserRepository(ERDbContext context)
 {
     _context = context;
 }