Class DefaultTaxDao

    • Constructor Detail

      • DefaultTaxDao

        public DefaultTaxDao()
    • Method Detail

      • findTaxesByCode

        public java.util.List<TaxModel> findTaxesByCode​(java.lang.String code)
        Description copied from interface: TaxDao
        Finds the TaxModels with the specified code.
        Specified by:
        findTaxesByCode in interface TaxDao
        Parameters:
        code - the tax code
        Returns:
        the List of found TaxModels ordered by creation time.
      • findTaxesByCodePattern

        public java.util.List<TaxModel> findTaxesByCodePattern​(java.lang.String matchedCode)
        Description copied from interface: TaxDao
        Finds all TaxModels which match the specified code.
        Specified by:
        findTaxesByCodePattern in interface TaxDao
        Parameters:
        matchedCode - an SQL-Like statement as String, such as %taxCode%
        Returns:
        the List of all TaxModels which match the specified code