Files
KonSoft.Clean/gateways/KonSoft.InternalGateway/Aggregations/ApplicationConfiguration/AppConfigurationCachedService.cs

9 lines
456 B
C#

using KonSoft.InternalGateway.Aggregations.Base;
using Microsoft.Extensions.Caching.Memory;
using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
using Volo.Abp.DependencyInjection;
namespace KonSoft.InternalGateway.Aggregations.ApplicationConfiguration;
public class AppConfigurationCachedService(IMemoryCache applicationConfigurationCache)
: CachedServiceBase<ApplicationConfigurationDto>(applicationConfigurationCache), ISingletonDependency;