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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public LTestStatusCollection FetchAll()
        {
            LTestStatusCollection coll = new LTestStatusCollection();
            Query qry = new Query(LTestStatus.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public LTestStatusCollection FetchByID(object TestStatusId)
        {
            LTestStatusCollection coll = new LTestStatusCollection().Where("TestStatus_ID", TestStatusId).Load();

            return(coll);
        }