Beispiel #1
0
        public AprProblemasMenorCollection FetchByQuery(Query qry)
        {
            AprProblemasMenorCollection coll = new AprProblemasMenorCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public AprProblemasMenorCollection FetchAll()
        {
            AprProblemasMenorCollection coll = new AprProblemasMenorCollection();
            Query qry = new Query(AprProblemasMenor.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public AprProblemasMenorCollection FetchByID(object IdProblemaMenor)
        {
            AprProblemasMenorCollection coll = new AprProblemasMenorCollection().Where("idProblemaMenor", IdProblemaMenor).Load();

            return(coll);
        }