mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
12 lines
401 B
C#
12 lines
401 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);
|
|
}
|
|
}
|