示例#1
0
        public InternalInvoiceSubTableCollection FetchByQuery(Query qry)
        {
            InternalInvoiceSubTableCollection coll = new InternalInvoiceSubTableCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public InternalInvoiceSubTableCollection FetchAll()
        {
            InternalInvoiceSubTableCollection coll = new InternalInvoiceSubTableCollection();
            Query qry = new Query(InternalInvoiceSubTable.Schema);

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