예제 #1
0
        public RisItemDesaprobadoCollection FetchByQuery(Query qry)
        {
            RisItemDesaprobadoCollection coll = new RisItemDesaprobadoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public RisItemDesaprobadoCollection FetchAll()
        {
            RisItemDesaprobadoCollection coll = new RisItemDesaprobadoCollection();
            Query qry = new Query(RisItemDesaprobado.Schema);

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