public PatientRepository(BlueDBContext context) : base(context) { this._dbContext = context; this._dbSet = this._dbContext.Set <T>(); }
public GenericRepository(BlueDBContext context) { this._dbContext = context; this._dbSet = this._dbContext.Set <T>(); }
public DoctorRepository(BlueDBContext context) : base(context) { this._dbContext = context; }