public InternalInvoiceSubTableAuditCollection FetchByQuery(Query qry)
        {
            InternalInvoiceSubTableAuditCollection coll = new InternalInvoiceSubTableAuditCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public InternalInvoiceSubTableAuditCollection FetchAll()
        {
            InternalInvoiceSubTableAuditCollection coll = new InternalInvoiceSubTableAuditCollection();
            Query qry = new Query(InternalInvoiceSubTableAudit.Schema);

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