コード例 #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);
        }
コード例 #3
0
        public PnPrestacionesNuevaCollection FetchByID(object IdPrestacionesNuevas)
        {
            PnPrestacionesNuevaCollection coll = new PnPrestacionesNuevaCollection().Where("idPrestacionesNuevas", IdPrestacionesNuevas).Load();

            return(coll);
        }