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

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

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