Beispiel #1
0
        public PnPacPapCollection FetchByQuery(Query qry)
        {
            PnPacPapCollection coll = new PnPacPapCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public PnPacPapCollection FetchAll()
        {
            PnPacPapCollection coll = new PnPacPapCollection();
            Query qry = new Query(PnPacPap.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public PnPacPapCollection FetchByID(object IdPacPap)
        {
            PnPacPapCollection coll = new PnPacPapCollection().Where("id_pac_pap", IdPacPap).Load();

            return(coll);
        }