2022-06-29 19:46:41 -04:00
|
|
|
|
using Bit.Core.Entities.Provider;
|
2021-06-30 09:35:26 +02:00
|
|
|
|
using Bit.Core.Models.Data;
|
2021-06-03 18:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
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-03 18:58:29 +02:00
|
|
|
|
{
|
2021-06-30 09:35:26 +02:00
|
|
|
|
Task<ICollection<ProviderOrganizationOrganizationDetails>> GetManyDetailsByProviderAsync(Guid providerId);
|
2021-07-15 16:37:27 +02:00
|
|
|
|
Task<ProviderOrganization> GetByOrganizationId(Guid organizationId);
|
2021-06-03 18:58:29 +02:00
|
|
|
|
}
|