public GenericRepository(RoomMateDbContext _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
 public GenericRepository()
 {
     this._context = new RoomMateDbContext();
     table         = _context.Set <T>();
 }