using Bit.Core.Billing.Models; using Bit.Core.Entities; namespace Bit.Core.Billing.Services; public interface IPaymentHistoryService { Task> GetInvoiceHistoryAsync( ISubscriber subscriber, int pageSize = 5, string startAfter = null); Task> GetTransactionHistoryAsync( ISubscriber subscriber, int pageSize = 5, DateTime? startAfter = null); }