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

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

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