mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 21:25:39 +02:00
11 lines
183 B
Ruby
11 lines
183 B
Ruby
class Registry
|
|
include Singleton
|
|
|
|
def vat_rate
|
|
Setting.registry_vat_prc.to_d * 100
|
|
end
|
|
|
|
def legal_address_country
|
|
Country.new(Setting.registry_country_code)
|
|
end
|
|
end
|