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