Ejemplo n.º 1
0
        public LUserTestTypeCollection FetchByQuery(Query qry)
        {
            LUserTestTypeCollection coll = new LUserTestTypeCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public LUserTestTypeCollection FetchAll()
        {
            LUserTestTypeCollection coll = new LUserTestTypeCollection();
            Query qry = new Query(LUserTestType.Schema);

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

            return(coll);
        }