Exemplo n.º 1
0
 public GenericRepository(DoctorAppointmentSystemContext _Context)
 {
     this._context = _Context;
     table         = _context.Set <T>();
 }
Exemplo n.º 2
0
 public GenericRepository()
 {
     this._context = new DoctorAppointmentSystemContext();
     table         = _context.Set <T>();
 }