示例#1
0
 public PatientRepository(BlueDBContext context) : base(context)
 {
     this._dbContext = context;
     this._dbSet     = this._dbContext.Set <T>();
 }
示例#2
0
 public GenericRepository(BlueDBContext context)
 {
     this._dbContext = context;
     this._dbSet     = this._dbContext.Set <T>();
 }
示例#3
0
 public DoctorRepository(BlueDBContext context) : base(context)
 {
     this._dbContext = context;
 }