mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
11 lines
379 B
C#
11 lines
379 B
C#
using Bit.Core.Entities.Provider;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Repositories;
|
|
|
|
public interface IProviderOrganizationRepository : IRepository<ProviderOrganization, Guid>
|
|
{
|
|
Task<ICollection<ProviderOrganizationOrganizationDetails>> GetManyDetailsByProviderAsync(Guid providerId);
|
|
Task<ProviderOrganization> GetByOrganizationId(Guid organizationId);
|
|
}
|