public LUserTestTypeCollection FetchAll()
 {
     LUserTestTypeCollection coll = new LUserTestTypeCollection();
     Query qry = new Query(LUserTestType.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public LUserTestTypeCollection FetchByQuery(Query qry)
 {
     LUserTestTypeCollection coll = new LUserTestTypeCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public LUserTestTypeCollection FetchByID(object UserName)
 {
     LUserTestTypeCollection coll = new LUserTestTypeCollection().Where("UserName", UserName).Load();
     return coll;
 }