Esempio n. 1
0
        public LUserFormControlCollection FetchByQuery(Query qry)
        {
            LUserFormControlCollection coll = new LUserFormControlCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public LUserFormControlCollection FetchAll()
        {
            LUserFormControlCollection coll = new LUserFormControlCollection();
            Query qry = new Query(LUserFormControl.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public LUserFormControlCollection FetchByID(object UserName)
        {
            LUserFormControlCollection coll = new LUserFormControlCollection().Where("UserName", UserName).Load();

            return(coll);
        }