using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Enums.Provider; using Bit.Core.Models.Data; using Bit.Core.Models.Table.Provider; namespace Bit.Core.Repositories { public interface IProviderUserRepository : IRepository { Task GetCountByProviderAsync(Guid providerId, string email, bool onlyRegisteredUsers); Task> GetManyAsync(IEnumerable ids); Task> GetManyByUserAsync(Guid userId); Task GetByProviderUserAsync(Guid providerId, Guid userId); Task> GetManyByProviderAsync(Guid providerId, ProviderUserType? type = null); Task> GetManyDetailsByProviderAsync(Guid providerId); Task> GetManyDetailsByUserAsync(Guid userId, ProviderUserStatusType? status = null); Task> GetManyOrganizationDetailsByUserAsync(Guid userId, ProviderUserStatusType? status = null); Task DeleteManyAsync(IEnumerable userIds); Task> GetManyPublicKeysByProviderUserAsync(Guid providerId, IEnumerable Ids); Task GetCountByOnlyOwnerAsync(Guid userId); } }