コード例 #1
0
        public PnPrestacionesNuevaCollection FetchByQuery(Query qry)
        {
            PnPrestacionesNuevaCollection coll = new PnPrestacionesNuevaCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public PnPrestacionesNuevaCollection FetchAll()
        {
            PnPrestacionesNuevaCollection coll = new PnPrestacionesNuevaCollection();
            Query qry = new Query(PnPrestacionesNueva.Schema);

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