2021-06-03 18:58:29 +02:00
|
|
|
|
using System;
|
2021-06-30 09:35:26 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Bit.Core.Models.Data;
|
2021-06-03 18:58:29 +02:00
|
|
|
|
using Bit.Core.Models.Table.Provider;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Repositories
|
|
|
|
|
|
{
|
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-06-03 18:58:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|