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

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

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