2017-12-19 22:02:39 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Bit.Core.Models.Data;
|
|
|
|
|
using Bit.Core.Models.Table;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IApplicationCacheService
|
|
|
|
|
{
|
|
|
|
|
Task<IDictionary<Guid, OrganizationAbility>> GetOrganizationAbilitiesAsync();
|
2021-06-30 09:35:26 +02:00
|
|
|
|
Task<IDictionary<Guid, ProviderAbility>> GetProviderAbilitiesAsync();
|
2017-12-19 22:02:39 +01:00
|
|
|
|
Task UpsertOrganizationAbilityAsync(Organization organization);
|
|
|
|
|
Task DeleteOrganizationAbilityAsync(Guid organizationId);
|
|
|
|
|
}
|
|
|
|
|
}
|