1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-14 15:00:49 -05:00
bitwarden/src/Billing/Services/IProviderEventService.cs
Alex Morask 83604cceb1
[AC-1943] Implement provider client invoice report (#4178)
* Update ProviderInvoiceItem SQL configuration

* Implement provider client invoice export

* Add tests

* Run dotnet format

* Fixed SPROC backwards compatibility issue
2024-06-14 12:26:49 -04:00

9 lines
149 B
C#

using Stripe;
namespace Bit.Billing.Services;
public interface IProviderEventService
{
Task TryRecordInvoiceLineItems(Event parsedEvent);
}