18 lines
662 B
C#
18 lines
662 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.Localization;
|
|
|
|
public class LocalizationRemoteService : AggregateRemoteServiceBase<ApplicationLocalizationDto>,
|
|
ILocalizationRemoteService, ITransientDependency
|
|
{
|
|
public LocalizationRemoteService(
|
|
IHttpContextAccessor httpContextAccessor,
|
|
IJsonSerializer jsonSerializer,
|
|
ILogger<AggregateRemoteServiceBase<ApplicationLocalizationDto>> logger)
|
|
: base(httpContextAccessor, jsonSerializer, logger)
|
|
{
|
|
}
|
|
} |