using KonSoft.InternalGateway.Aggregations.Base; using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations; using Volo.Abp.DependencyInjection; using Volo.Abp.Json; namespace KonSoft.InternalGateway.Aggregations.Localization; public class LocalizationRemoteService : AggregateRemoteServiceBase, ILocalizationRemoteService, ITransientDependency { public LocalizationRemoteService( IHttpContextAccessor httpContextAccessor, IJsonSerializer jsonSerializer, ILogger> logger) : base(httpContextAccessor, jsonSerializer, logger) { } }