13 lines
613 B
C#
13 lines
613 B
C#
using KonSoft.InternalGateway.Aggregations.Base;
|
|
using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.Json;
|
|
|
|
namespace KonSoft.InternalGateway.Aggregations.ApplicationConfiguration;
|
|
|
|
public class AppConfigurationRemoteService(
|
|
IHttpContextAccessor httpContextAccessor,
|
|
IJsonSerializer jsonSerializer,
|
|
ILogger<AggregateRemoteServiceBase<ApplicationConfigurationDto>> logger)
|
|
: AggregateRemoteServiceBase<ApplicationConfigurationDto>(httpContextAccessor, jsonSerializer, logger),
|
|
IAppConfigurationRemoteService, ITransientDependency; |