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