Files
server/src/Core/Repositories/IProviderOrganizationRepository.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
379 B
C#
Raw Normal View History

using Bit.Core.Entities.Provider;
2021-06-30 09:35:26 +02:00
using Bit.Core.Models.Data;
namespace Bit.Core.Repositories;
2022-08-29 16:06:55 -04:00
2021-06-30 09:35:26 +02:00
public interface IProviderOrganizationRepository : IRepository<ProviderOrganization, Guid>
{
2021-06-30 09:35:26 +02:00
Task<ICollection<ProviderOrganizationOrganizationDetails>> GetManyDetailsByProviderAsync(Guid providerId);
Task<ProviderOrganization> GetByOrganizationId(Guid organizationId);
}