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

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

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