namespace Bit.Core.Billing.Services; public interface ITaxService { /// /// Retrieves the Stripe tax code for a given country and tax ID. /// /// /// /// /// Returns the Stripe tax code if the tax ID is valid for the country. /// Returns null if the tax ID is invalid or the country is not supported. /// string GetStripeTaxCode(string country, string taxId); /// /// Returns true or false whether charging or storing tax is supported for the given country. /// /// /// bool IsSupported(string country); }