using Bit.Core.Entities; using Bit.Core.Enums; namespace Bit.Core.Repositories; public interface ITransactionRepository : IRepository { Task> GetManyByUserIdAsync(Guid userId, int? limit = null); Task> GetManyByOrganizationIdAsync(Guid organizationId, int? limit = null); Task> GetManyByProviderIdAsync(Guid providerId, int? limit = null); Task GetByGatewayIdAsync(GatewayType gatewayType, string gatewayId); }