using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Models.Data; using Bit.Core.Models.Table.Provider; namespace Bit.Core.Repositories { public interface IProviderOrganizationRepository : IRepository { Task> GetManyDetailsByProviderAsync(Guid providerId); Task> GetManyByUserIdAsync(Guid userId); } }