// This file is automatically generated by ABP framework to use MVC Controllers from CSharp using System; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Http.Client; using Volo.Abp.Http.Modeling; using Volo.Abp.DependencyInjection; using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Admin.GlobalResources; // ReSharper disable once CheckNamespace namespace Volo.CmsKit.Admin.GlobalResources.ClientProxies; [Dependency(ReplaceServices = true)] [ExposeServices(typeof(IGlobalResourceAdminAppService), typeof(GlobalResourceAdminClientProxy))] public partial class GlobalResourceAdminClientProxy : ClientProxyBase, IGlobalResourceAdminAppService { public virtual async Task GetAsync() { return await RequestAsync(nameof(GetAsync)); } public virtual async Task SetGlobalResourcesAsync(GlobalResourcesUpdateDto input) { await RequestAsync(nameof(SetGlobalResourcesAsync), new ClientProxyRequestTypeValue { { typeof(GlobalResourcesUpdateDto), input } }); } }