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
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
namespace Bit.Core.Repositories
|
2021-06-03 18:58:29 +02:00
|
|
|
|
{
|
2022-08-29 15:53:48 -04:00
|
|
|
|
public interface IProviderOrganizationRepository : IRepository<ProviderOrganization, Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<ICollection<ProviderOrganizationOrganizationDetails>> GetManyDetailsByProviderAsync(Guid providerId);
|
|
|
|
|
|
Task<ProviderOrganization> GetByOrganizationId(Guid organizationId);
|
|
|
|
|
|
}
|
2021-06-03 18:58:29 +02:00
|
|
|
|
}
|