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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public PnRecibeCollection FetchByID(object IdRecibe)
        {
            PnRecibeCollection coll = new PnRecibeCollection().Where("id_recibe", IdRecibe).Load();

            return(coll);
        }