public final SentenceList getTaxCustCategoriesList() {
return new StaticSentence(s
, "SELECT ID, NAME FROM TAXCUSTCATEGORIES ORDER BY NAME"
, null
, new SerializerRead() { public Object readValues(DataRead dr) throws BasicException {
return new TaxCustCategoryInfo(dr.getString(1), dr.getString(2));
}});
}