public EmrGlasgowVerbalCollection FetchAll()
 {
     EmrGlasgowVerbalCollection coll = new EmrGlasgowVerbalCollection();
     Query qry = new Query(EmrGlasgowVerbal.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public EmrGlasgowVerbalCollection FetchByQuery(Query qry)
 {
     EmrGlasgowVerbalCollection coll = new EmrGlasgowVerbalCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader()); 
     return coll;
 }
 public EmrGlasgowVerbalCollection FetchByID(object IdGlasgowVerbal)
 {
     EmrGlasgowVerbalCollection coll = new EmrGlasgowVerbalCollection().Where("idGlasgowVerbal", IdGlasgowVerbal).Load();
     return coll;
 }