Пример #1
0
        public AprProblemasMenorCollection FetchByQuery(Query qry)
        {
            AprProblemasMenorCollection coll = new AprProblemasMenorCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public AprProblemasMenorCollection FetchAll()
        {
            AprProblemasMenorCollection coll = new AprProblemasMenorCollection();
            Query qry = new Query(AprProblemasMenor.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }