Interface TaxDao

  • All Known Implementing Classes:
    DefaultTaxDao

    public interface TaxDao
    • Method Detail

      • findTaxesByCode

        java.util.List<TaxModel> findTaxesByCode​(java.lang.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

        java.util.List<TaxModel> findTaxesByCodePattern​(java.lang.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