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

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

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