Exemplo n.º 1
0
        public InvoiceCurrencyTableCollection FetchByQuery(Query qry)
        {
            InvoiceCurrencyTableCollection coll = new InvoiceCurrencyTableCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public InvoiceCurrencyTableCollection FetchAll()
        {
            InvoiceCurrencyTableCollection coll = new InvoiceCurrencyTableCollection();
            Query qry = new Query(InvoiceCurrencyTable.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public InvoiceCurrencyTableCollection FetchByID(object CurrencyID)
        {
            InvoiceCurrencyTableCollection coll = new InvoiceCurrencyTableCollection().Where("CurrencyID", CurrencyID).Load();

            return(coll);
        }