using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Enums; using Bit.Core.Models.Table; namespace Bit.Core.Repositories { public interface ITransactionRepository : IRepository { Task> GetManyByUserIdAsync(Guid userId); Task> GetManyByOrganizationIdAsync(Guid organizationId); Task GetByGatewayIdAsync(GatewayType gatewayType, string gatewayId); } }