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