using Bit.Core.Billing.Services.Contracts;
namespace Bit.Core.Billing.Services;
///
/// Responsible for defining the correct automatic tax strategy for either personal use of business use.
///
public interface IAutomaticTaxFactory
{
Task CreateAsync(AutomaticTaxFactoryParameters parameters);
}