Interface TaxDao

All Known Implementing Classes:
DefaultTaxDao

public interface TaxDao
  • Method Details

    • findTaxesByCode

      List<TaxModel> findTaxesByCode(String code)
      Finds the TaxModels with the specified code.
      Parameters:
      code - the tax code
      Returns:
      the List of found TaxModels ordered by creation time.
    • findTaxesByCodePattern

      List<TaxModel> findTaxesByCodePattern(String code)
      Finds all TaxModels which match the specified code.
      Parameters:
      code - an SQL-Like statement as String, such as %taxCode%
      Returns:
      the List of all TaxModels which match the specified code