Ejemplo n.º 1
0
 public LUserFormControlCollection FetchAll()
 {
     LUserFormControlCollection coll = new LUserFormControlCollection();
     Query qry = new Query(LUserFormControl.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
 public LUserFormControlCollection FetchByQuery(Query qry)
 {
     LUserFormControlCollection coll = new LUserFormControlCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 3
0
 public LUserFormControlCollection FetchByID(object UserName)
 {
     LUserFormControlCollection coll = new LUserFormControlCollection().Where("UserName", UserName).Load();
     return coll;
 }