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

15 lines
489 B
C#
Raw Normal View History

using System;
2021-06-30 09:35:26 +02:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Models.Data;
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-30 09:35:26 +02:00
Task<ICollection<ProviderOrganizationOrganizationDetails>> GetManyDetailsByProviderAsync(Guid providerId);
Task<ICollection<ProviderOrganization>> GetManyByUserIdAsync(Guid userId);
}
}