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