mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 10:55:43 -05:00
15 lines
479 B
C#
15 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Entities.Provider;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IProviderOrganizationRepository : IRepository<ProviderOrganization, Guid>
|
|
{
|
|
Task<ICollection<ProviderOrganizationOrganizationDetails>> GetManyDetailsByProviderAsync(Guid providerId);
|
|
Task<ProviderOrganization> GetByOrganizationId(Guid organizationId);
|
|
}
|
|
}
|