mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 12:40:22 -05:00

* Pm 19147 2 (#5544) * Pm 19147 2 (#5544) * Unit tests for tax strategies `GetUpdateOptions` * Only allow automatic tax flag to be updated for complete subscription updates such as plan changes, not when upgrading additional storage, seats, etc * unit tests for factory * Fix build * Automatic tax for tax estimation * Fix stub * Fix stub * "customer.tax_ids" isn't expanded in some flows. * Fix SubscriberServiceTests.cs * BusinessUseAutomaticTaxStrategy > SetUpdateOptions tests * Fix ProviderBillingServiceTests.cs
12 lines
348 B
C#
12 lines
348 B
C#
using Bit.Core.Billing.Services.Contracts;
|
|
|
|
namespace Bit.Core.Billing.Services;
|
|
|
|
/// <summary>
|
|
/// Responsible for defining the correct automatic tax strategy for either personal use of business use.
|
|
/// </summary>
|
|
public interface IAutomaticTaxFactory
|
|
{
|
|
Task<IAutomaticTaxStrategy> CreateAsync(AutomaticTaxFactoryParameters parameters);
|
|
}
|