diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.Generated.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.Generated.cs index 9d1c472bc7..198cfce711 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.Generated.cs +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.Generated.cs @@ -9,15 +9,14 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations; // ReSharper disable once CheckNamespace -namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClientProxies +namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IAbpApplicationConfigurationAppService), typeof(AbpApplicationConfigurationClientProxy))] +public partial class AbpApplicationConfigurationClientProxy : ClientProxyBase, IAbpApplicationConfigurationAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IAbpApplicationConfigurationAppService), typeof(AbpApplicationConfigurationClientProxy))] - public partial class AbpApplicationConfigurationClientProxy : ClientProxyBase, IAbpApplicationConfigurationAppService + public virtual async Task GetAsync() { - public virtual async Task GetAsync() - { - return await RequestAsync(nameof(GetAsync)); - } + return await RequestAsync(nameof(GetAsync)); } } diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.cs index 41c1031556..62b582b01b 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.cs +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpApplicationConfigurationClientProxy.cs @@ -3,11 +3,10 @@ using Volo.Abp.DependencyInjection; -namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClientProxies +namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClientProxies; + +[RemoteService(false)] +[DisableConventionalRegistration] +public partial class AbpApplicationConfigurationClientProxy { - [RemoteService(false)] - [DisableConventionalRegistration] - public partial class AbpApplicationConfigurationClientProxy - { - } } diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.Generated.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.Generated.cs index 8984abfc4c..291a6e95d1 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.Generated.cs +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.Generated.cs @@ -9,26 +9,25 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.AspNetCore.Mvc.MultiTenancy; // ReSharper disable once CheckNamespace -namespace Pages.Abp.MultiTenancy.ClientProxies +namespace Pages.Abp.MultiTenancy.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IAbpTenantAppService), typeof(AbpTenantClientProxy))] +public partial class AbpTenantClientProxy : ClientProxyBase, IAbpTenantAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IAbpTenantAppService), typeof(AbpTenantClientProxy))] - public partial class AbpTenantClientProxy : ClientProxyBase, IAbpTenantAppService + public virtual async Task FindTenantByNameAsync(string name) { - public virtual async Task FindTenantByNameAsync(string name) + return await RequestAsync(nameof(FindTenantByNameAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(FindTenantByNameAsync), new ClientProxyRequestTypeValue - { - { typeof(string), name } - }); - } + { typeof(string), name } + }); + } - public virtual async Task FindTenantByIdAsync(Guid id) + public virtual async Task FindTenantByIdAsync(Guid id) + { + return await RequestAsync(nameof(FindTenantByIdAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(FindTenantByIdAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.cs index e73b05b573..8ca24d1317 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.cs +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/ClientProxies/AbpTenantClientProxy.cs @@ -4,11 +4,11 @@ using Volo.Abp; using Volo.Abp.DependencyInjection; -namespace Pages.Abp.MultiTenancy.ClientProxies +namespace Pages.Abp.MultiTenancy.ClientProxies; + +[RemoteService(false)] +[DisableConventionalRegistration] +public partial class AbpTenantClientProxy { - [RemoteService(false)] - [DisableConventionalRegistration] - public partial class AbpTenantClientProxy - { - } } + diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ServiceProxying/CSharp/CSharpServiceProxyGenerator.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ServiceProxying/CSharp/CSharpServiceProxyGenerator.cs index 36031f8c3c..7da30a9ccc 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ServiceProxying/CSharp/CSharpServiceProxyGenerator.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ServiceProxying/CSharp/CSharpServiceProxyGenerator.cs @@ -29,23 +29,21 @@ public class CSharpServiceProxyGenerator : ServiceProxyGeneratorBase" + $"{Environment.NewLine}" + $"{Environment.NewLine}// ReSharper disable once CheckNamespace" + - $"{Environment.NewLine}namespace " + + $"{Environment.NewLine}namespace ;" + + $"{Environment.NewLine}" + + $"{Environment.NewLine}[Dependency(ReplaceServices = true)]" + + $"{Environment.NewLine}[ExposeServices(typeof(), typeof())]" + + $"{Environment.NewLine}public partial class : ClientProxyBase<>, " + $"{Environment.NewLine}{{" + - $"{Environment.NewLine} [Dependency(ReplaceServices = true)]" + - $"{Environment.NewLine} [ExposeServices(typeof(), typeof())]" + - $"{Environment.NewLine} public partial class : ClientProxyBase<>, " + - $"{Environment.NewLine} {{" + - $"{Environment.NewLine} " + - $"{Environment.NewLine} }}" + + $"{Environment.NewLine} " + $"{Environment.NewLine}}}" + $"{Environment.NewLine}"; private readonly string _clientProxyTemplate = "// This file is part of , you can customize it here" + $"{Environment.NewLine}// ReSharper disable once CheckNamespace" + - $"{Environment.NewLine}namespace " + + $"{Environment.NewLine}namespace ;" + + $"{Environment.NewLine}" + + $"{Environment.NewLine}public partial class " + $"{Environment.NewLine}{{" + - $"{Environment.NewLine} public partial class " + - $"{Environment.NewLine} {{" + - $"{Environment.NewLine} }}" + $"{Environment.NewLine}}}" + $"{Environment.NewLine}"; private readonly List _usingNamespaceList = new() diff --git a/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/AccountClientProxy.Generated.cs b/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/AccountClientProxy.Generated.cs index 54a353cdf8..e0535a0cd2 100644 --- a/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/AccountClientProxy.Generated.cs +++ b/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/AccountClientProxy.Generated.cs @@ -10,34 +10,33 @@ using Volo.Abp.Account; using Volo.Abp.Identity; // ReSharper disable once CheckNamespace -namespace Volo.Abp.Account.ClientProxies +namespace Volo.Abp.Account.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IAccountAppService), typeof(AccountClientProxy))] +public partial class AccountClientProxy : ClientProxyBase, IAccountAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IAccountAppService), typeof(AccountClientProxy))] - public partial class AccountClientProxy : ClientProxyBase, IAccountAppService + public virtual async Task RegisterAsync(RegisterDto input) { - public virtual async Task RegisterAsync(RegisterDto input) + return await RequestAsync(nameof(RegisterAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(RegisterAsync), new ClientProxyRequestTypeValue - { - { typeof(RegisterDto), input } - }); - } + { typeof(RegisterDto), input } + }); + } - public virtual async Task SendPasswordResetCodeAsync(SendPasswordResetCodeDto input) + public virtual async Task SendPasswordResetCodeAsync(SendPasswordResetCodeDto input) + { + await RequestAsync(nameof(SendPasswordResetCodeAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(SendPasswordResetCodeAsync), new ClientProxyRequestTypeValue - { - { typeof(SendPasswordResetCodeDto), input } - }); - } + { typeof(SendPasswordResetCodeDto), input } + }); + } - public virtual async Task ResetPasswordAsync(ResetPasswordDto input) + public virtual async Task ResetPasswordAsync(ResetPasswordDto input) + { + await RequestAsync(nameof(ResetPasswordAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(ResetPasswordAsync), new ClientProxyRequestTypeValue - { - { typeof(ResetPasswordDto), input } - }); - } + { typeof(ResetPasswordDto), input } + }); } } diff --git a/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/ProfileClientProxy.Generated.cs b/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/ProfileClientProxy.Generated.cs index 794c5a3557..0f1bd18959 100644 --- a/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/ProfileClientProxy.Generated.cs +++ b/modules/account/src/Volo.Abp.Account.HttpApi.Client/ClientProxies/ProfileClientProxy.Generated.cs @@ -9,31 +9,30 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.Identity; // ReSharper disable once CheckNamespace -namespace Volo.Abp.Account.ClientProxies +namespace Volo.Abp.Account.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IProfileAppService), typeof(ProfileClientProxy))] +public partial class ProfileClientProxy : ClientProxyBase, IProfileAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IProfileAppService), typeof(ProfileClientProxy))] - public partial class ProfileClientProxy : ClientProxyBase, IProfileAppService + public virtual async Task GetAsync() { - public virtual async Task GetAsync() - { - return await RequestAsync(nameof(GetAsync)); - } + return await RequestAsync(nameof(GetAsync)); + } - public virtual async Task UpdateAsync(UpdateProfileDto input) + public virtual async Task UpdateAsync(UpdateProfileDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(UpdateProfileDto), input } - }); - } + { typeof(UpdateProfileDto), input } + }); + } - public virtual async Task ChangePasswordAsync(ChangePasswordInput input) + public virtual async Task ChangePasswordAsync(ChangePasswordInput input) + { + await RequestAsync(nameof(ChangePasswordAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(ChangePasswordAsync), new ClientProxyRequestTypeValue - { - { typeof(ChangePasswordInput), input } - }); - } + { typeof(ChangePasswordInput), input } + }); } } diff --git a/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.Generated.cs b/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.Generated.cs index ee0b6b8a97..bfa96d50e9 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.Generated.cs +++ b/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.Generated.cs @@ -10,56 +10,55 @@ using Volo.Blogging.Admin.Blogs; using Volo.Blogging.Blogs.Dtos; // ReSharper disable once CheckNamespace -namespace Volo.Blogging.Admin.ClientProxies +namespace Volo.Blogging.Admin.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IBlogManagementAppService), typeof(BlogManagementClientProxy))] +public partial class BlogManagementClientProxy : ClientProxyBase, IBlogManagementAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IBlogManagementAppService), typeof(BlogManagementClientProxy))] - public partial class BlogManagementClientProxy : ClientProxyBase, IBlogManagementAppService + public virtual async Task> GetListAsync() { - public virtual async Task> GetListAsync() - { - return await RequestAsync>(nameof(GetListAsync)); - } + return await RequestAsync>(nameof(GetListAsync)); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task CreateAsync(CreateBlogDto input) + public virtual async Task CreateAsync(CreateBlogDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(CreateBlogDto), input } - }); - } + { typeof(CreateBlogDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdateBlogDto input) + public virtual async Task UpdateAsync(Guid id, UpdateBlogDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdateBlogDto), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdateBlogDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task ClearCacheAsync(Guid id) + public virtual async Task ClearCacheAsync(Guid id) + { + await RequestAsync(nameof(ClearCacheAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(ClearCacheAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.cs b/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.cs index cde41d1b2a..5c8089f1b3 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.cs +++ b/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/ClientProxies/BlogManagementClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of BlogManagementClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Blogging.Admin.ClientProxies +namespace Volo.Blogging.Admin.ClientProxies; + +public partial class BlogManagementClientProxy { - public partial class BlogManagementClientProxy - { - } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.Generated.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.Generated.cs index e9b3880474..ca1e2d5378 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.Generated.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.Generated.cs @@ -10,34 +10,33 @@ using Volo.Blogging.Files; using Volo.Abp.Content; // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IFileAppService), typeof(BlogFilesClientProxy))] +public partial class BlogFilesClientProxy : ClientProxyBase, IFileAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IFileAppService), typeof(BlogFilesClientProxy))] - public partial class BlogFilesClientProxy : ClientProxyBase, IFileAppService + public virtual async Task GetAsync(string name) { - public virtual async Task GetAsync(string name) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(string), name } - }); - } + { typeof(string), name } + }); + } - public virtual async Task GetFileAsync(string name) + public virtual async Task GetFileAsync(string name) + { + return await RequestAsync(nameof(GetFileAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetFileAsync), new ClientProxyRequestTypeValue - { - { typeof(string), name } - }); - } + { typeof(string), name } + }); + } - public virtual async Task CreateAsync(FileUploadInputDto input) + public virtual async Task CreateAsync(FileUploadInputDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(FileUploadInputDto), input } - }); - } + { typeof(FileUploadInputDto), input } + }); } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.cs index 742e5c6a20..d37240531c 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogFilesClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of BlogFilesClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +public partial class BlogFilesClientProxy { - public partial class BlogFilesClientProxy - { - } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.Generated.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.Generated.cs index 66b39a1353..72d8cf360c 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.Generated.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.Generated.cs @@ -10,31 +10,30 @@ using Volo.Blogging.Blogs; using Volo.Blogging.Blogs.Dtos; // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IBlogAppService), typeof(BlogsClientProxy))] +public partial class BlogsClientProxy : ClientProxyBase, IBlogAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IBlogAppService), typeof(BlogsClientProxy))] - public partial class BlogsClientProxy : ClientProxyBase, IBlogAppService + public virtual async Task> GetListAsync() { - public virtual async Task> GetListAsync() - { - return await RequestAsync>(nameof(GetListAsync)); - } + return await RequestAsync>(nameof(GetListAsync)); + } - public virtual async Task GetByShortNameAsync(string shortName) + public virtual async Task GetByShortNameAsync(string shortName) + { + return await RequestAsync(nameof(GetByShortNameAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetByShortNameAsync), new ClientProxyRequestTypeValue - { - { typeof(string), shortName } - }); - } + { typeof(string), shortName } + }); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.cs index ed13994e26..91ad5b4d0c 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/BlogsClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of BlogsClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +public partial class BlogsClientProxy { - public partial class BlogsClientProxy - { - } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.Generated.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.Generated.cs index f08ea4afb3..b512aafb9e 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.Generated.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.Generated.cs @@ -11,43 +11,42 @@ using System.Collections.Generic; using Volo.Blogging.Comments.Dtos; // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(ICommentAppService), typeof(CommentsClientProxy))] +public partial class CommentsClientProxy : ClientProxyBase, ICommentAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(ICommentAppService), typeof(CommentsClientProxy))] - public partial class CommentsClientProxy : ClientProxyBase, ICommentAppService + public virtual async Task> GetHierarchicalListOfPostAsync(Guid postId) { - public virtual async Task> GetHierarchicalListOfPostAsync(Guid postId) + return await RequestAsync>(nameof(GetHierarchicalListOfPostAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetHierarchicalListOfPostAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), postId } - }); - } + { typeof(Guid), postId } + }); + } - public virtual async Task CreateAsync(CreateCommentDto input) + public virtual async Task CreateAsync(CreateCommentDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(CreateCommentDto), input } - }); - } + { typeof(CreateCommentDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdateCommentDto input) + public virtual async Task UpdateAsync(Guid id, UpdateCommentDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdateCommentDto), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdateCommentDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.cs index bbea86dbd1..96043bcc66 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/CommentsClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of CommentsClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +public partial class CommentsClientProxy { - public partial class CommentsClientProxy - { - } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.Generated.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.Generated.cs index ac586dbfa4..17ee93818a 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.Generated.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.Generated.cs @@ -9,68 +9,67 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Blogging.Posts; // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IPostAppService), typeof(PostsClientProxy))] +public partial class PostsClientProxy : ClientProxyBase, IPostAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IPostAppService), typeof(PostsClientProxy))] - public partial class PostsClientProxy : ClientProxyBase, IPostAppService + public virtual async Task> GetListByBlogIdAndTagNameAsync(Guid blogId, string tagName) { - public virtual async Task> GetListByBlogIdAndTagNameAsync(Guid blogId, string tagName) + return await RequestAsync>(nameof(GetListByBlogIdAndTagNameAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListByBlogIdAndTagNameAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), blogId }, - { typeof(string), tagName } - }); - } + { typeof(Guid), blogId }, + { typeof(string), tagName } + }); + } - public virtual async Task> GetTimeOrderedListAsync(Guid blogId) + public virtual async Task> GetTimeOrderedListAsync(Guid blogId) + { + return await RequestAsync>(nameof(GetTimeOrderedListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetTimeOrderedListAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), blogId } - }); - } + { typeof(Guid), blogId } + }); + } - public virtual async Task GetForReadingAsync(GetPostInput input) + public virtual async Task GetForReadingAsync(GetPostInput input) + { + return await RequestAsync(nameof(GetForReadingAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetForReadingAsync), new ClientProxyRequestTypeValue - { - { typeof(GetPostInput), input } - }); - } + { typeof(GetPostInput), input } + }); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task CreateAsync(CreatePostDto input) + public virtual async Task CreateAsync(CreatePostDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(CreatePostDto), input } - }); - } + { typeof(CreatePostDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdatePostDto input) + public virtual async Task UpdateAsync(Guid id, UpdatePostDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdatePostDto), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdatePostDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.cs index bfe0cb84cd..49d0334dda 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/PostsClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of PostsClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +public partial class PostsClientProxy { - public partial class PostsClientProxy - { - } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.Generated.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.Generated.cs index bcc924deb5..37762c02e8 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.Generated.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.Generated.cs @@ -11,19 +11,18 @@ using System.Collections.Generic; using Volo.Blogging.Tagging.Dtos; // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(ITagAppService), typeof(TagsClientProxy))] +public partial class TagsClientProxy : ClientProxyBase, ITagAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(ITagAppService), typeof(TagsClientProxy))] - public partial class TagsClientProxy : ClientProxyBase, ITagAppService + public virtual async Task> GetPopularTagsAsync(Guid blogId, GetPopularTagsInput input) { - public virtual async Task> GetPopularTagsAsync(Guid blogId, GetPopularTagsInput input) + return await RequestAsync>(nameof(GetPopularTagsAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetPopularTagsAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), blogId }, - { typeof(GetPopularTagsInput), input } - }); - } + { typeof(Guid), blogId }, + { typeof(GetPopularTagsInput), input } + }); } } diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.cs b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.cs index c167fed207..5ba235ea06 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.cs +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/ClientProxies/TagsClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of TagsClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Blogging.ClientProxies +namespace Volo.Blogging.ClientProxies; + +public partial class TagsClientProxy { - public partial class TagsClientProxy - { - } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogAdminClientProxy.Generated.cs index 132a53a4eb..1768711291 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogAdminClientProxy.Generated.cs @@ -9,51 +9,50 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Admin.Blogs; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Blogs.ClientProxies +namespace Volo.CmsKit.Admin.Blogs.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IBlogAdminAppService), typeof(BlogAdminClientProxy))] +public partial class BlogAdminClientProxy : ClientProxyBase, IBlogAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IBlogAdminAppService), typeof(BlogAdminClientProxy))] - public partial class BlogAdminClientProxy : ClientProxyBase, IBlogAdminAppService + public virtual async Task GetAsync(Guid id) { - public virtual async Task GetAsync(Guid id) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetListAsync(BlogGetListInput input) + public virtual async Task> GetListAsync(BlogGetListInput input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(BlogGetListInput), input } - }); - } + { typeof(BlogGetListInput), input } + }); + } - public virtual async Task CreateAsync(CreateBlogDto input) + public virtual async Task CreateAsync(CreateBlogDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(CreateBlogDto), input } - }); - } + { typeof(CreateBlogDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdateBlogDto input) + public virtual async Task UpdateAsync(Guid id, UpdateBlogDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdateBlogDto), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdateBlogDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogFeatureAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogFeatureAdminClientProxy.Generated.cs index a94158fc14..eb96db72bb 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogFeatureAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogFeatureAdminClientProxy.Generated.cs @@ -11,27 +11,26 @@ using System.Collections.Generic; using Volo.CmsKit.Blogs; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Blogs.ClientProxies +namespace Volo.CmsKit.Admin.Blogs.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IBlogFeatureAdminAppService), typeof(BlogFeatureAdminClientProxy))] +public partial class BlogFeatureAdminClientProxy : ClientProxyBase, IBlogFeatureAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IBlogFeatureAdminAppService), typeof(BlogFeatureAdminClientProxy))] - public partial class BlogFeatureAdminClientProxy : ClientProxyBase, IBlogFeatureAdminAppService + public virtual async Task> GetListAsync(Guid blogId) { - public virtual async Task> GetListAsync(Guid blogId) + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), blogId } - }); - } + { typeof(Guid), blogId } + }); + } - public virtual async Task SetAsync(Guid blogId, BlogFeatureInputDto dto) + public virtual async Task SetAsync(Guid blogId, BlogFeatureInputDto dto) + { + await RequestAsync(nameof(SetAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(SetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), blogId }, - { typeof(BlogFeatureInputDto), dto } - }); - } + { typeof(Guid), blogId }, + { typeof(BlogFeatureInputDto), dto } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogPostAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogPostAdminClientProxy.Generated.cs index 66cbcc8c65..560ba4e2de 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogPostAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/BlogPostAdminClientProxy.Generated.cs @@ -9,51 +9,50 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Admin.Blogs; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Blogs.ClientProxies +namespace Volo.CmsKit.Admin.Blogs.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IBlogPostAdminAppService), typeof(BlogPostAdminClientProxy))] +public partial class BlogPostAdminClientProxy : ClientProxyBase, IBlogPostAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IBlogPostAdminAppService), typeof(BlogPostAdminClientProxy))] - public partial class BlogPostAdminClientProxy : ClientProxyBase, IBlogPostAdminAppService + public virtual async Task CreateAsync(CreateBlogPostDto input) { - public virtual async Task CreateAsync(CreateBlogPostDto input) + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(CreateBlogPostDto), input } - }); - } + { typeof(CreateBlogPostDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetListAsync(BlogPostGetListInput input) + public virtual async Task> GetListAsync(BlogPostGetListInput input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(BlogPostGetListInput), input } - }); - } + { typeof(BlogPostGetListInput), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdateBlogPostDto input) + public virtual async Task UpdateAsync(Guid id, UpdateBlogPostDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdateBlogPostDto), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdateBlogPostDto), input } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/CommentAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/CommentAdminClientProxy.Generated.cs index 70714febc9..d9cf02f915 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/CommentAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/CommentAdminClientProxy.Generated.cs @@ -9,34 +9,33 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Admin.Comments; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Comments.ClientProxies +namespace Volo.CmsKit.Admin.Comments.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(ICommentAdminAppService), typeof(CommentAdminClientProxy))] +public partial class CommentAdminClientProxy : ClientProxyBase, ICommentAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(ICommentAdminAppService), typeof(CommentAdminClientProxy))] - public partial class CommentAdminClientProxy : ClientProxyBase, ICommentAdminAppService + public virtual async Task> GetListAsync(CommentGetListInput input) { - public virtual async Task> GetListAsync(CommentGetListInput input) + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(CommentGetListInput), input } - }); - } + { typeof(CommentGetListInput), input } + }); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/EntityTagAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/EntityTagAdminClientProxy.Generated.cs index 45e81f4fae..fe117682eb 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/EntityTagAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/EntityTagAdminClientProxy.Generated.cs @@ -9,34 +9,33 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Admin.Tags; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Tags.ClientProxies +namespace Volo.CmsKit.Admin.Tags.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IEntityTagAdminAppService), typeof(EntityTagAdminClientProxy))] +public partial class EntityTagAdminClientProxy : ClientProxyBase, IEntityTagAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IEntityTagAdminAppService), typeof(EntityTagAdminClientProxy))] - public partial class EntityTagAdminClientProxy : ClientProxyBase, IEntityTagAdminAppService + public virtual async Task AddTagToEntityAsync(EntityTagCreateDto input) { - public virtual async Task AddTagToEntityAsync(EntityTagCreateDto input) + await RequestAsync(nameof(AddTagToEntityAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(AddTagToEntityAsync), new ClientProxyRequestTypeValue - { - { typeof(EntityTagCreateDto), input } - }); - } + { typeof(EntityTagCreateDto), input } + }); + } - public virtual async Task RemoveTagFromEntityAsync(EntityTagRemoveDto input) + public virtual async Task RemoveTagFromEntityAsync(EntityTagRemoveDto input) + { + await RequestAsync(nameof(RemoveTagFromEntityAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(RemoveTagFromEntityAsync), new ClientProxyRequestTypeValue - { - { typeof(EntityTagRemoveDto), input } - }); - } + { typeof(EntityTagRemoveDto), input } + }); + } - public virtual async Task SetEntityTagsAsync(EntityTagSetDto input) + public virtual async Task SetEntityTagsAsync(EntityTagSetDto input) + { + await RequestAsync(nameof(SetEntityTagsAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(SetEntityTagsAsync), new ClientProxyRequestTypeValue - { - { typeof(EntityTagSetDto), input } - }); - } + { typeof(EntityTagSetDto), input } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MediaDescriptorAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MediaDescriptorAdminClientProxy.Generated.cs index 08bad64e4b..426e215cf0 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MediaDescriptorAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MediaDescriptorAdminClientProxy.Generated.cs @@ -9,27 +9,26 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Admin.MediaDescriptors; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.MediaDescriptors.ClientProxies +namespace Volo.CmsKit.Admin.MediaDescriptors.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IMediaDescriptorAdminAppService), typeof(MediaDescriptorAdminClientProxy))] +public partial class MediaDescriptorAdminClientProxy : ClientProxyBase, IMediaDescriptorAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IMediaDescriptorAdminAppService), typeof(MediaDescriptorAdminClientProxy))] - public partial class MediaDescriptorAdminClientProxy : ClientProxyBase, IMediaDescriptorAdminAppService + public virtual async Task CreateAsync(string entityType, CreateMediaInputWithStream inputStream) { - public virtual async Task CreateAsync(string entityType, CreateMediaInputWithStream inputStream) + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(CreateMediaInputWithStream), inputStream } - }); - } + { typeof(string), entityType }, + { typeof(CreateMediaInputWithStream), inputStream } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MenuItemAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MenuItemAdminClientProxy.Generated.cs index 90b997a120..93e069bbe7 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MenuItemAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/MenuItemAdminClientProxy.Generated.cs @@ -10,65 +10,64 @@ using Volo.CmsKit.Admin.Menus; using Volo.CmsKit.Menus; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Menus.ClientProxies +namespace Volo.CmsKit.Admin.Menus.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IMenuItemAdminAppService), typeof(MenuItemAdminClientProxy))] +public partial class MenuItemAdminClientProxy : ClientProxyBase, IMenuItemAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IMenuItemAdminAppService), typeof(MenuItemAdminClientProxy))] - public partial class MenuItemAdminClientProxy : ClientProxyBase, IMenuItemAdminAppService + public virtual async Task> GetListAsync() { - public virtual async Task> GetListAsync() - { - return await RequestAsync>(nameof(GetListAsync)); - } + return await RequestAsync>(nameof(GetListAsync)); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task CreateAsync(MenuItemCreateInput input) + public virtual async Task CreateAsync(MenuItemCreateInput input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(MenuItemCreateInput), input } - }); - } + { typeof(MenuItemCreateInput), input } + }); + } - public virtual async Task UpdateAsync(Guid id, MenuItemUpdateInput input) + public virtual async Task UpdateAsync(Guid id, MenuItemUpdateInput input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(MenuItemUpdateInput), input } - }); - } + { typeof(Guid), id }, + { typeof(MenuItemUpdateInput), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task MoveMenuItemAsync(Guid id, MenuItemMoveInput input) + public virtual async Task MoveMenuItemAsync(Guid id, MenuItemMoveInput input) + { + await RequestAsync(nameof(MoveMenuItemAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(MoveMenuItemAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(MenuItemMoveInput), input } - }); - } + { typeof(Guid), id }, + { typeof(MenuItemMoveInput), input } + }); + } - public virtual async Task> GetPageLookupAsync(PageLookupInputDto input) + public virtual async Task> GetPageLookupAsync(PageLookupInputDto input) + { + return await RequestAsync>(nameof(GetPageLookupAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetPageLookupAsync), new ClientProxyRequestTypeValue - { - { typeof(PageLookupInputDto), input } - }); - } + { typeof(PageLookupInputDto), input } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/PageAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/PageAdminClientProxy.Generated.cs index e65f9d0587..5d404b2751 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/PageAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/PageAdminClientProxy.Generated.cs @@ -9,51 +9,50 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Admin.Pages; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Pages.ClientProxies +namespace Volo.CmsKit.Admin.Pages.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IPageAdminAppService), typeof(PageAdminClientProxy))] +public partial class PageAdminClientProxy : ClientProxyBase, IPageAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IPageAdminAppService), typeof(PageAdminClientProxy))] - public partial class PageAdminClientProxy : ClientProxyBase, IPageAdminAppService + public virtual async Task GetAsync(Guid id) { - public virtual async Task GetAsync(Guid id) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetListAsync(GetPagesInputDto input) + public virtual async Task> GetListAsync(GetPagesInputDto input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(GetPagesInputDto), input } - }); - } + { typeof(GetPagesInputDto), input } + }); + } - public virtual async Task CreateAsync(CreatePageInputDto input) + public virtual async Task CreateAsync(CreatePageInputDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(CreatePageInputDto), input } - }); - } + { typeof(CreatePageInputDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdatePageInputDto input) + public virtual async Task UpdateAsync(Guid id, UpdatePageInputDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdatePageInputDto), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdatePageInputDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/TagAdminClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/TagAdminClientProxy.Generated.cs index c141040804..a835953a5e 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/TagAdminClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/ClientProxies/TagAdminClientProxy.Generated.cs @@ -11,56 +11,55 @@ using Volo.CmsKit.Tags; using System.Collections.Generic; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Admin.Tags.ClientProxies +namespace Volo.CmsKit.Admin.Tags.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(ITagAdminAppService), typeof(TagAdminClientProxy))] +public partial class TagAdminClientProxy : ClientProxyBase, ITagAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(ITagAdminAppService), typeof(TagAdminClientProxy))] - public partial class TagAdminClientProxy : ClientProxyBase, ITagAdminAppService + public virtual async Task CreateAsync(TagCreateDto input) { - public virtual async Task CreateAsync(TagCreateDto input) + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(TagCreateDto), input } - }); - } + { typeof(TagCreateDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetListAsync(TagGetListInput input) + public virtual async Task> GetListAsync(TagGetListInput input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(TagGetListInput), input } - }); - } + { typeof(TagGetListInput), input } + }); + } - public virtual async Task UpdateAsync(Guid id, TagUpdateDto input) + public virtual async Task UpdateAsync(Guid id, TagUpdateDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(TagUpdateDto), input } - }); - } + { typeof(Guid), id }, + { typeof(TagUpdateDto), input } + }); + } - public virtual async Task> GetTagDefinitionsAsync() - { - return await RequestAsync>(nameof(GetTagDefinitionsAsync)); - } + public virtual async Task> GetTagDefinitionsAsync() + { + return await RequestAsync>(nameof(GetTagDefinitionsAsync)); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/BlogFeatureClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/BlogFeatureClientProxy.Generated.cs index 494e4aaed4..3f9d502147 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/BlogFeatureClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/BlogFeatureClientProxy.Generated.cs @@ -9,19 +9,18 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Blogs; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Blogs.ClientProxies +namespace Volo.CmsKit.Blogs.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IBlogFeatureAppService), typeof(BlogFeatureClientProxy))] +public partial class BlogFeatureClientProxy : ClientProxyBase, IBlogFeatureAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IBlogFeatureAppService), typeof(BlogFeatureClientProxy))] - public partial class BlogFeatureClientProxy : ClientProxyBase, IBlogFeatureAppService + public virtual async Task GetOrDefaultAsync(Guid blogId, string featureName) { - public virtual async Task GetOrDefaultAsync(Guid blogId, string featureName) + return await RequestAsync(nameof(GetOrDefaultAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetOrDefaultAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), blogId }, - { typeof(string), featureName } - }); - } + { typeof(Guid), blogId }, + { typeof(string), featureName } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/MediaDescriptorClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/MediaDescriptorClientProxy.Generated.cs index 39f4e1eb82..d916a1e8d7 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/MediaDescriptorClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/ClientProxies/MediaDescriptorClientProxy.Generated.cs @@ -10,18 +10,17 @@ using Volo.CmsKit.MediaDescriptors; using Volo.Abp.Content; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.MediaDescriptors.ClientProxies +namespace Volo.CmsKit.MediaDescriptors.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IMediaDescriptorAppService), typeof(MediaDescriptorClientProxy))] +public partial class MediaDescriptorClientProxy : ClientProxyBase, IMediaDescriptorAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IMediaDescriptorAppService), typeof(MediaDescriptorClientProxy))] - public partial class MediaDescriptorClientProxy : ClientProxyBase, IMediaDescriptorAppService + public virtual async Task DownloadAsync(Guid id) { - public virtual async Task DownloadAsync(Guid id) + return await RequestAsync(nameof(DownloadAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(DownloadAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/BlogPostPublicClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/BlogPostPublicClientProxy.Generated.cs index 9d917e844d..c96e37f579 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/BlogPostPublicClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/BlogPostPublicClientProxy.Generated.cs @@ -9,28 +9,27 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Public.Blogs; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Public.Blogs.ClientProxies +namespace Volo.CmsKit.Public.Blogs.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IBlogPostPublicAppService), typeof(BlogPostPublicClientProxy))] +public partial class BlogPostPublicClientProxy : ClientProxyBase, IBlogPostPublicAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IBlogPostPublicAppService), typeof(BlogPostPublicClientProxy))] - public partial class BlogPostPublicClientProxy : ClientProxyBase, IBlogPostPublicAppService + public virtual async Task GetAsync(string blogSlug, string blogPostSlug) { - public virtual async Task GetAsync(string blogSlug, string blogPostSlug) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(string), blogSlug }, - { typeof(string), blogPostSlug } - }); - } + { typeof(string), blogSlug }, + { typeof(string), blogPostSlug } + }); + } - public virtual async Task> GetListAsync(string blogSlug, PagedAndSortedResultRequestDto input) + public virtual async Task> GetListAsync(string blogSlug, PagedAndSortedResultRequestDto input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(string), blogSlug }, - { typeof(PagedAndSortedResultRequestDto), input } - }); - } + { typeof(string), blogSlug }, + { typeof(PagedAndSortedResultRequestDto), input } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/CommentPublicClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/CommentPublicClientProxy.Generated.cs index 208cf561e4..b7b1afc59c 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/CommentPublicClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/CommentPublicClientProxy.Generated.cs @@ -9,46 +9,45 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Public.Comments; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Public.Comments.ClientProxies +namespace Volo.CmsKit.Public.Comments.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(ICommentPublicAppService), typeof(CommentPublicClientProxy))] +public partial class CommentPublicClientProxy : ClientProxyBase, ICommentPublicAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(ICommentPublicAppService), typeof(CommentPublicClientProxy))] - public partial class CommentPublicClientProxy : ClientProxyBase, ICommentPublicAppService + public virtual async Task> GetListAsync(string entityType, string entityId) { - public virtual async Task> GetListAsync(string entityType, string entityId) + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId } + }); + } - public virtual async Task CreateAsync(string entityType, string entityId, CreateCommentInput input) + public virtual async Task CreateAsync(string entityType, string entityId, CreateCommentInput input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId }, - { typeof(CreateCommentInput), input } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId }, + { typeof(CreateCommentInput), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdateCommentInput input) + public virtual async Task UpdateAsync(Guid id, UpdateCommentInput input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdateCommentInput), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdateCommentInput), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/MenuItemPublicClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/MenuItemPublicClientProxy.Generated.cs index f665c9c63d..5c9ba5769d 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/MenuItemPublicClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/MenuItemPublicClientProxy.Generated.cs @@ -11,15 +11,14 @@ using System.Collections.Generic; using Volo.CmsKit.Menus; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Public.Menus.ClientProxies +namespace Volo.CmsKit.Public.Menus.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IMenuItemPublicAppService), typeof(MenuItemPublicClientProxy))] +public partial class MenuItemPublicClientProxy : ClientProxyBase, IMenuItemPublicAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IMenuItemPublicAppService), typeof(MenuItemPublicClientProxy))] - public partial class MenuItemPublicClientProxy : ClientProxyBase, IMenuItemPublicAppService + public virtual async Task> GetListAsync() { - public virtual async Task> GetListAsync() - { - return await RequestAsync>(nameof(GetListAsync)); - } + return await RequestAsync>(nameof(GetListAsync)); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/PagesPublicClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/PagesPublicClientProxy.Generated.cs index cd206f0fc9..9ecf6cb387 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/PagesPublicClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/PagesPublicClientProxy.Generated.cs @@ -9,18 +9,17 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Public.Pages; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Public.Pages.ClientProxies +namespace Volo.CmsKit.Public.Pages.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IPagePublicAppService), typeof(PagesPublicClientProxy))] +public partial class PagesPublicClientProxy : ClientProxyBase, IPagePublicAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IPagePublicAppService), typeof(PagesPublicClientProxy))] - public partial class PagesPublicClientProxy : ClientProxyBase, IPagePublicAppService + public virtual async Task FindBySlugAsync(string slug) { - public virtual async Task FindBySlugAsync(string slug) + return await RequestAsync(nameof(FindBySlugAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(FindBySlugAsync), new ClientProxyRequestTypeValue - { - { typeof(string), slug } - }); - } + { typeof(string), slug } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/RatingPublicClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/RatingPublicClientProxy.Generated.cs index 19386e7602..583d86a282 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/RatingPublicClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/RatingPublicClientProxy.Generated.cs @@ -10,38 +10,37 @@ using Volo.CmsKit.Public.Ratings; using System.Collections.Generic; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Public.Ratings.ClientProxies +namespace Volo.CmsKit.Public.Ratings.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IRatingPublicAppService), typeof(RatingPublicClientProxy))] +public partial class RatingPublicClientProxy : ClientProxyBase, IRatingPublicAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IRatingPublicAppService), typeof(RatingPublicClientProxy))] - public partial class RatingPublicClientProxy : ClientProxyBase, IRatingPublicAppService + public virtual async Task CreateAsync(string entityType, string entityId, CreateUpdateRatingInput input) { - public virtual async Task CreateAsync(string entityType, string entityId, CreateUpdateRatingInput input) + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId }, - { typeof(CreateUpdateRatingInput), input } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId }, + { typeof(CreateUpdateRatingInput), input } + }); + } - public virtual async Task DeleteAsync(string entityType, string entityId) + public virtual async Task DeleteAsync(string entityType, string entityId) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId } + }); + } - public virtual async Task> GetGroupedStarCountsAsync(string entityType, string entityId) + public virtual async Task> GetGroupedStarCountsAsync(string entityType, string entityId) + { + return await RequestAsync>(nameof(GetGroupedStarCountsAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetGroupedStarCountsAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/ReactionPublicClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/ReactionPublicClientProxy.Generated.cs index ef7018c014..b656f785c3 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/ReactionPublicClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/ReactionPublicClientProxy.Generated.cs @@ -9,39 +9,38 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.CmsKit.Public.Reactions; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Public.Reactions.ClientProxies +namespace Volo.CmsKit.Public.Reactions.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IReactionPublicAppService), typeof(ReactionPublicClientProxy))] +public partial class ReactionPublicClientProxy : ClientProxyBase, IReactionPublicAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IReactionPublicAppService), typeof(ReactionPublicClientProxy))] - public partial class ReactionPublicClientProxy : ClientProxyBase, IReactionPublicAppService + public virtual async Task> GetForSelectionAsync(string entityType, string entityId) { - public virtual async Task> GetForSelectionAsync(string entityType, string entityId) + return await RequestAsync>(nameof(GetForSelectionAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetForSelectionAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId } + }); + } - public virtual async Task CreateAsync(string entityType, string entityId, string reaction) + public virtual async Task CreateAsync(string entityType, string entityId, string reaction) + { + await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId }, - { typeof(string), reaction } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId }, + { typeof(string), reaction } + }); + } - public virtual async Task DeleteAsync(string entityType, string entityId, string reaction) + public virtual async Task DeleteAsync(string entityType, string entityId, string reaction) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId }, - { typeof(string), reaction } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId }, + { typeof(string), reaction } + }); } } diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/TagPublicClientProxy.Generated.cs b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/TagPublicClientProxy.Generated.cs index 43a54a3857..8be40aaf1d 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/TagPublicClientProxy.Generated.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/ClientProxies/TagPublicClientProxy.Generated.cs @@ -10,19 +10,18 @@ using Volo.CmsKit.Tags; using System.Collections.Generic; // ReSharper disable once CheckNamespace -namespace Volo.CmsKit.Public.Tags.ClientProxies +namespace Volo.CmsKit.Public.Tags.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(ITagAppService), typeof(TagPublicClientProxy))] +public partial class TagPublicClientProxy : ClientProxyBase, ITagAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(ITagAppService), typeof(TagPublicClientProxy))] - public partial class TagPublicClientProxy : ClientProxyBase, ITagAppService + public virtual async Task> GetAllRelatedTagsAsync(string entityType, string entityId) { - public virtual async Task> GetAllRelatedTagsAsync(string entityType, string entityId) + return await RequestAsync>(nameof(GetAllRelatedTagsAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetAllRelatedTagsAsync), new ClientProxyRequestTypeValue - { - { typeof(string), entityType }, - { typeof(string), entityId } - }); - } + { typeof(string), entityType }, + { typeof(string), entityId } + }); } } diff --git a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.Generated.cs b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.Generated.cs index 642e1808c6..7bb1ef0e87 100644 --- a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.Generated.cs +++ b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.Generated.cs @@ -9,58 +9,57 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Docs.Admin.Documents; // ReSharper disable once CheckNamespace -namespace Volo.Docs.Admin.ClientProxies +namespace Volo.Docs.Admin.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IDocumentAdminAppService), typeof(DocumentsAdminClientProxy))] +public partial class DocumentsAdminClientProxy : ClientProxyBase, IDocumentAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IDocumentAdminAppService), typeof(DocumentsAdminClientProxy))] - public partial class DocumentsAdminClientProxy : ClientProxyBase, IDocumentAdminAppService + public virtual async Task ClearCacheAsync(ClearCacheInput input) { - public virtual async Task ClearCacheAsync(ClearCacheInput input) + await RequestAsync(nameof(ClearCacheAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(ClearCacheAsync), new ClientProxyRequestTypeValue - { - { typeof(ClearCacheInput), input } - }); - } + { typeof(ClearCacheInput), input } + }); + } - public virtual async Task PullAllAsync(PullAllDocumentInput input) + public virtual async Task PullAllAsync(PullAllDocumentInput input) + { + await RequestAsync(nameof(PullAllAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(PullAllAsync), new ClientProxyRequestTypeValue - { - { typeof(PullAllDocumentInput), input } - }); - } + { typeof(PullAllDocumentInput), input } + }); + } - public virtual async Task PullAsync(PullDocumentInput input) + public virtual async Task PullAsync(PullDocumentInput input) + { + await RequestAsync(nameof(PullAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(PullAsync), new ClientProxyRequestTypeValue - { - { typeof(PullDocumentInput), input } - }); - } + { typeof(PullDocumentInput), input } + }); + } - public virtual async Task> GetAllAsync(GetAllInput input) + public virtual async Task> GetAllAsync(GetAllInput input) + { + return await RequestAsync>(nameof(GetAllAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetAllAsync), new ClientProxyRequestTypeValue - { - { typeof(GetAllInput), input } - }); - } + { typeof(GetAllInput), input } + }); + } - public virtual async Task RemoveFromCacheAsync(Guid documentId) + public virtual async Task RemoveFromCacheAsync(Guid documentId) + { + await RequestAsync(nameof(RemoveFromCacheAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(RemoveFromCacheAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), documentId } - }); - } + { typeof(Guid), documentId } + }); + } - public virtual async Task ReindexAsync(Guid documentId) + public virtual async Task ReindexAsync(Guid documentId) + { + await RequestAsync(nameof(ReindexAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(ReindexAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), documentId } - }); - } + { typeof(Guid), documentId } + }); } } diff --git a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.cs b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.cs index 0c8153ee09..34899f1c49 100644 --- a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.cs +++ b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/DocumentsAdminClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of DocumentsAdminClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Docs.Admin.ClientProxies +namespace Volo.Docs.Admin.ClientProxies; + +public partial class DocumentsAdminClientProxy { - public partial class DocumentsAdminClientProxy - { - } } diff --git a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.Generated.cs b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.Generated.cs index 66180b158c..cb8d5c3947 100644 --- a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.Generated.cs +++ b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.Generated.cs @@ -9,64 +9,63 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Docs.Admin.Projects; // ReSharper disable once CheckNamespace -namespace Volo.Docs.Admin.ClientProxies +namespace Volo.Docs.Admin.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IProjectAdminAppService), typeof(ProjectsAdminClientProxy))] +public partial class ProjectsAdminClientProxy : ClientProxyBase, IProjectAdminAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IProjectAdminAppService), typeof(ProjectsAdminClientProxy))] - public partial class ProjectsAdminClientProxy : ClientProxyBase, IProjectAdminAppService + public virtual async Task> GetListAsync(PagedAndSortedResultRequestDto input) { - public virtual async Task> GetListAsync(PagedAndSortedResultRequestDto input) + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(PagedAndSortedResultRequestDto), input } - }); - } + { typeof(PagedAndSortedResultRequestDto), input } + }); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task CreateAsync(CreateProjectDto input) + public virtual async Task CreateAsync(CreateProjectDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(CreateProjectDto), input } - }); - } + { typeof(CreateProjectDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, UpdateProjectDto input) + public virtual async Task UpdateAsync(Guid id, UpdateProjectDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(UpdateProjectDto), input } - }); - } + { typeof(Guid), id }, + { typeof(UpdateProjectDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task ReindexAllAsync() - { - await RequestAsync(nameof(ReindexAllAsync)); - } + public virtual async Task ReindexAllAsync() + { + await RequestAsync(nameof(ReindexAllAsync)); + } - public virtual async Task ReindexAsync(ReindexInput input) + public virtual async Task ReindexAsync(ReindexInput input) + { + await RequestAsync(nameof(ReindexAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(ReindexAsync), new ClientProxyRequestTypeValue - { - { typeof(ReindexInput), input } - }); - } + { typeof(ReindexInput), input } + }); } } diff --git a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.cs b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.cs index b3bdb93ecf..c9584cffbf 100644 --- a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.cs +++ b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/ClientProxies/ProjectsAdminClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of ProjectsAdminClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Docs.Admin.ClientProxies +namespace Volo.Docs.Admin.ClientProxies; + +public partial class ProjectsAdminClientProxy { - public partial class ProjectsAdminClientProxy - { - } } diff --git a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.Generated.cs b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.Generated.cs index 5892e9a31f..e329c395ea 100644 --- a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.Generated.cs +++ b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.Generated.cs @@ -10,71 +10,70 @@ using Volo.Docs.Documents; using System.Collections.Generic; // ReSharper disable once CheckNamespace -namespace Volo.Docs.Documents.ClientProxies +namespace Volo.Docs.Documents.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IDocumentAppService), typeof(DocsDocumentClientProxy))] +public partial class DocsDocumentClientProxy : ClientProxyBase, IDocumentAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IDocumentAppService), typeof(DocsDocumentClientProxy))] - public partial class DocsDocumentClientProxy : ClientProxyBase, IDocumentAppService + public virtual async Task GetAsync(GetDocumentInput input) { - public virtual async Task GetAsync(GetDocumentInput input) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(GetDocumentInput), input } - }); - } + { typeof(GetDocumentInput), input } + }); + } - public virtual async Task GetDefaultAsync(GetDefaultDocumentInput input) + public virtual async Task GetDefaultAsync(GetDefaultDocumentInput input) + { + return await RequestAsync(nameof(GetDefaultAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetDefaultAsync), new ClientProxyRequestTypeValue - { - { typeof(GetDefaultDocumentInput), input } - }); - } + { typeof(GetDefaultDocumentInput), input } + }); + } - public virtual async Task GetNavigationAsync(GetNavigationDocumentInput input) + public virtual async Task GetNavigationAsync(GetNavigationDocumentInput input) + { + return await RequestAsync(nameof(GetNavigationAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetNavigationAsync), new ClientProxyRequestTypeValue - { - { typeof(GetNavigationDocumentInput), input } - }); - } + { typeof(GetNavigationDocumentInput), input } + }); + } - public virtual async Task GetResourceAsync(GetDocumentResourceInput input) + public virtual async Task GetResourceAsync(GetDocumentResourceInput input) + { + return await RequestAsync(nameof(GetResourceAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetResourceAsync), new ClientProxyRequestTypeValue - { - { typeof(GetDocumentResourceInput), input } - }); - } + { typeof(GetDocumentResourceInput), input } + }); + } - public virtual async Task> SearchAsync(DocumentSearchInput input) + public virtual async Task> SearchAsync(DocumentSearchInput input) + { + return await RequestAsync>(nameof(SearchAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(SearchAsync), new ClientProxyRequestTypeValue - { - { typeof(DocumentSearchInput), input } - }); - } + { typeof(DocumentSearchInput), input } + }); + } - public virtual async Task FullSearchEnabledAsync() - { - return await RequestAsync(nameof(FullSearchEnabledAsync)); - } + public virtual async Task FullSearchEnabledAsync() + { + return await RequestAsync(nameof(FullSearchEnabledAsync)); + } - public virtual async Task> GetUrlsAsync(string prefix) + public virtual async Task> GetUrlsAsync(string prefix) + { + return await RequestAsync>(nameof(GetUrlsAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetUrlsAsync), new ClientProxyRequestTypeValue - { - { typeof(string), prefix } - }); - } + { typeof(string), prefix } + }); + } - public virtual async Task GetParametersAsync(GetParametersDocumentInput input) + public virtual async Task GetParametersAsync(GetParametersDocumentInput input) + { + return await RequestAsync(nameof(GetParametersAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetParametersAsync), new ClientProxyRequestTypeValue - { - { typeof(GetParametersDocumentInput), input } - }); - } + { typeof(GetParametersDocumentInput), input } + }); } } diff --git a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.cs b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.cs index 7d6e2d441d..8acc2d5e94 100644 --- a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.cs +++ b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsDocumentClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of DocsDocumentClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Docs.Documents.ClientProxies +namespace Volo.Docs.Documents.ClientProxies; + +public partial class DocsDocumentClientProxy { - public partial class DocsDocumentClientProxy - { - } } diff --git a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.Generated.cs b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.Generated.cs index ec0bb50688..b21f2c5e4f 100644 --- a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.Generated.cs +++ b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.Generated.cs @@ -10,49 +10,48 @@ using Volo.Docs.Projects; using Volo.Docs.Documents; // ReSharper disable once CheckNamespace -namespace Volo.Docs.Projects.ClientProxies +namespace Volo.Docs.Projects.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IProjectAppService), typeof(DocsProjectClientProxy))] +public partial class DocsProjectClientProxy : ClientProxyBase, IProjectAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IProjectAppService), typeof(DocsProjectClientProxy))] - public partial class DocsProjectClientProxy : ClientProxyBase, IProjectAppService + public virtual async Task> GetListAsync() { - public virtual async Task> GetListAsync() - { - return await RequestAsync>(nameof(GetListAsync)); - } + return await RequestAsync>(nameof(GetListAsync)); + } - public virtual async Task GetAsync(string shortName) + public virtual async Task GetAsync(string shortName) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(string), shortName } - }); - } + { typeof(string), shortName } + }); + } - public virtual async Task GetDefaultLanguageCodeAsync(string shortName, string version) + public virtual async Task GetDefaultLanguageCodeAsync(string shortName, string version) + { + return await RequestAsync(nameof(GetDefaultLanguageCodeAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetDefaultLanguageCodeAsync), new ClientProxyRequestTypeValue - { - { typeof(string), shortName }, - { typeof(string), version } - }); - } + { typeof(string), shortName }, + { typeof(string), version } + }); + } - public virtual async Task> GetVersionsAsync(string shortName) + public virtual async Task> GetVersionsAsync(string shortName) + { + return await RequestAsync>(nameof(GetVersionsAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetVersionsAsync), new ClientProxyRequestTypeValue - { - { typeof(string), shortName } - }); - } + { typeof(string), shortName } + }); + } - public virtual async Task GetLanguageListAsync(string shortName, string version) + public virtual async Task GetLanguageListAsync(string shortName, string version) + { + return await RequestAsync(nameof(GetLanguageListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetLanguageListAsync), new ClientProxyRequestTypeValue - { - { typeof(string), shortName }, - { typeof(string), version } - }); - } + { typeof(string), shortName }, + { typeof(string), version } + }); } } diff --git a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.cs b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.cs index cb3204aef8..0fa89db6e4 100644 --- a/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.cs +++ b/modules/docs/src/Volo.Docs.HttpApi.Client/ClientProxies/DocsProjectClientProxy.cs @@ -1,8 +1,7 @@ // This file is part of DocsProjectClientProxy, you can customize it here // ReSharper disable once CheckNamespace -namespace Volo.Docs.Projects.ClientProxies +namespace Volo.Docs.Projects.ClientProxies; + +public partial class DocsProjectClientProxy { - public partial class DocsProjectClientProxy - { - } } diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/ClientProxies/FeaturesClientProxy.Generated.cs b/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/ClientProxies/FeaturesClientProxy.Generated.cs index 8e14682460..a315445d84 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/ClientProxies/FeaturesClientProxy.Generated.cs +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/ClientProxies/FeaturesClientProxy.Generated.cs @@ -9,29 +9,28 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.FeatureManagement; // ReSharper disable once CheckNamespace -namespace Volo.Abp.FeatureManagement.ClientProxies +namespace Volo.Abp.FeatureManagement.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IFeatureAppService), typeof(FeaturesClientProxy))] +public partial class FeaturesClientProxy : ClientProxyBase, IFeatureAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IFeatureAppService), typeof(FeaturesClientProxy))] - public partial class FeaturesClientProxy : ClientProxyBase, IFeatureAppService + public virtual async Task GetAsync(string providerName, string providerKey) { - public virtual async Task GetAsync(string providerName, string providerKey) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(string), providerName }, - { typeof(string), providerKey } - }); - } + { typeof(string), providerName }, + { typeof(string), providerKey } + }); + } - public virtual async Task UpdateAsync(string providerName, string providerKey, UpdateFeaturesDto input) + public virtual async Task UpdateAsync(string providerName, string providerKey, UpdateFeaturesDto input) + { + await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(string), providerName }, - { typeof(string), providerKey }, - { typeof(UpdateFeaturesDto), input } - }); - } + { typeof(string), providerName }, + { typeof(string), providerKey }, + { typeof(UpdateFeaturesDto), input } + }); } } diff --git a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityRoleClientProxy.Generated.cs b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityRoleClientProxy.Generated.cs index 0cda6cb043..4a02b9c44b 100644 --- a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityRoleClientProxy.Generated.cs +++ b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityRoleClientProxy.Generated.cs @@ -9,56 +9,55 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.Identity; // ReSharper disable once CheckNamespace -namespace Volo.Abp.Identity.ClientProxies +namespace Volo.Abp.Identity.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IIdentityRoleAppService), typeof(IdentityRoleClientProxy))] +public partial class IdentityRoleClientProxy : ClientProxyBase, IIdentityRoleAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IIdentityRoleAppService), typeof(IdentityRoleClientProxy))] - public partial class IdentityRoleClientProxy : ClientProxyBase, IIdentityRoleAppService + public virtual async Task> GetAllListAsync() { - public virtual async Task> GetAllListAsync() - { - return await RequestAsync>(nameof(GetAllListAsync)); - } + return await RequestAsync>(nameof(GetAllListAsync)); + } - public virtual async Task> GetListAsync(GetIdentityRolesInput input) + public virtual async Task> GetListAsync(GetIdentityRolesInput input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(GetIdentityRolesInput), input } - }); - } + { typeof(GetIdentityRolesInput), input } + }); + } - public virtual async Task GetAsync(Guid id) + public virtual async Task GetAsync(Guid id) + { + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task CreateAsync(IdentityRoleCreateDto input) + public virtual async Task CreateAsync(IdentityRoleCreateDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(IdentityRoleCreateDto), input } - }); - } + { typeof(IdentityRoleCreateDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, IdentityRoleUpdateDto input) + public virtual async Task UpdateAsync(Guid id, IdentityRoleUpdateDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(IdentityRoleUpdateDto), input } - }); - } + { typeof(Guid), id }, + { typeof(IdentityRoleUpdateDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } } diff --git a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserClientProxy.Generated.cs b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserClientProxy.Generated.cs index 773c7edcd8..0b1018fdf7 100644 --- a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserClientProxy.Generated.cs +++ b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserClientProxy.Generated.cs @@ -9,89 +9,88 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.Identity; // ReSharper disable once CheckNamespace -namespace Volo.Abp.Identity.ClientProxies +namespace Volo.Abp.Identity.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IIdentityUserAppService), typeof(IdentityUserClientProxy))] +public partial class IdentityUserClientProxy : ClientProxyBase, IIdentityUserAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IIdentityUserAppService), typeof(IdentityUserClientProxy))] - public partial class IdentityUserClientProxy : ClientProxyBase, IIdentityUserAppService + public virtual async Task GetAsync(Guid id) { - public virtual async Task GetAsync(Guid id) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetListAsync(GetIdentityUsersInput input) + public virtual async Task> GetListAsync(GetIdentityUsersInput input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(GetIdentityUsersInput), input } - }); - } + { typeof(GetIdentityUsersInput), input } + }); + } - public virtual async Task CreateAsync(IdentityUserCreateDto input) + public virtual async Task CreateAsync(IdentityUserCreateDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(IdentityUserCreateDto), input } - }); - } + { typeof(IdentityUserCreateDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, IdentityUserUpdateDto input) + public virtual async Task UpdateAsync(Guid id, IdentityUserUpdateDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(IdentityUserUpdateDto), input } - }); - } + { typeof(Guid), id }, + { typeof(IdentityUserUpdateDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetRolesAsync(Guid id) + public virtual async Task> GetRolesAsync(Guid id) + { + return await RequestAsync>(nameof(GetRolesAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetRolesAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetAssignableRolesAsync() - { - return await RequestAsync>(nameof(GetAssignableRolesAsync)); - } + public virtual async Task> GetAssignableRolesAsync() + { + return await RequestAsync>(nameof(GetAssignableRolesAsync)); + } - public virtual async Task UpdateRolesAsync(Guid id, IdentityUserUpdateRolesDto input) + public virtual async Task UpdateRolesAsync(Guid id, IdentityUserUpdateRolesDto input) + { + await RequestAsync(nameof(UpdateRolesAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(UpdateRolesAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(IdentityUserUpdateRolesDto), input } - }); - } + { typeof(Guid), id }, + { typeof(IdentityUserUpdateRolesDto), input } + }); + } - public virtual async Task FindByUsernameAsync(string userName) + public virtual async Task FindByUsernameAsync(string userName) + { + return await RequestAsync(nameof(FindByUsernameAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(FindByUsernameAsync), new ClientProxyRequestTypeValue - { - { typeof(string), userName } - }); - } + { typeof(string), userName } + }); + } - public virtual async Task FindByEmailAsync(string email) + public virtual async Task FindByEmailAsync(string email) + { + return await RequestAsync(nameof(FindByEmailAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(FindByEmailAsync), new ClientProxyRequestTypeValue - { - { typeof(string), email } - }); - } + { typeof(string), email } + }); } } diff --git a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserLookupClientProxy.Generated.cs b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserLookupClientProxy.Generated.cs index 9f71ed2a50..7a05ffbfa4 100644 --- a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserLookupClientProxy.Generated.cs +++ b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/ClientProxies/IdentityUserLookupClientProxy.Generated.cs @@ -10,42 +10,41 @@ using Volo.Abp.Identity; using Volo.Abp.Users; // ReSharper disable once CheckNamespace -namespace Volo.Abp.Identity.ClientProxies +namespace Volo.Abp.Identity.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IIdentityUserLookupAppService), typeof(IdentityUserLookupClientProxy))] +public partial class IdentityUserLookupClientProxy : ClientProxyBase, IIdentityUserLookupAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IIdentityUserLookupAppService), typeof(IdentityUserLookupClientProxy))] - public partial class IdentityUserLookupClientProxy : ClientProxyBase, IIdentityUserLookupAppService + public virtual async Task FindByIdAsync(Guid id) { - public virtual async Task FindByIdAsync(Guid id) + return await RequestAsync(nameof(FindByIdAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(FindByIdAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task FindByUserNameAsync(string userName) + public virtual async Task FindByUserNameAsync(string userName) + { + return await RequestAsync(nameof(FindByUserNameAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(FindByUserNameAsync), new ClientProxyRequestTypeValue - { - { typeof(string), userName } - }); - } + { typeof(string), userName } + }); + } - public virtual async Task> SearchAsync(UserLookupSearchInputDto input) + public virtual async Task> SearchAsync(UserLookupSearchInputDto input) + { + return await RequestAsync>(nameof(SearchAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(SearchAsync), new ClientProxyRequestTypeValue - { - { typeof(UserLookupSearchInputDto), input } - }); - } + { typeof(UserLookupSearchInputDto), input } + }); + } - public virtual async Task GetCountAsync(UserLookupCountInputDto input) + public virtual async Task GetCountAsync(UserLookupCountInputDto input) + { + return await RequestAsync(nameof(GetCountAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetCountAsync), new ClientProxyRequestTypeValue - { - { typeof(UserLookupCountInputDto), input } - }); - } + { typeof(UserLookupCountInputDto), input } + }); } } diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/ClientProxies/PermissionsClientProxy.Generated.cs b/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/ClientProxies/PermissionsClientProxy.Generated.cs index adb04a8feb..d0955c61cd 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/ClientProxies/PermissionsClientProxy.Generated.cs +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/ClientProxies/PermissionsClientProxy.Generated.cs @@ -9,29 +9,28 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.PermissionManagement; // ReSharper disable once CheckNamespace -namespace Volo.Abp.PermissionManagement.ClientProxies +namespace Volo.Abp.PermissionManagement.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IPermissionAppService), typeof(PermissionsClientProxy))] +public partial class PermissionsClientProxy : ClientProxyBase, IPermissionAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IPermissionAppService), typeof(PermissionsClientProxy))] - public partial class PermissionsClientProxy : ClientProxyBase, IPermissionAppService + public virtual async Task GetAsync(string providerName, string providerKey) { - public virtual async Task GetAsync(string providerName, string providerKey) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(string), providerName }, - { typeof(string), providerKey } - }); - } + { typeof(string), providerName }, + { typeof(string), providerKey } + }); + } - public virtual async Task UpdateAsync(string providerName, string providerKey, UpdatePermissionsDto input) + public virtual async Task UpdateAsync(string providerName, string providerKey, UpdatePermissionsDto input) + { + await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(string), providerName }, - { typeof(string), providerKey }, - { typeof(UpdatePermissionsDto), input } - }); - } + { typeof(string), providerName }, + { typeof(string), providerKey }, + { typeof(UpdatePermissionsDto), input } + }); } } diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/ClientProxies/EmailSettingsClientProxy.Generated.cs b/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/ClientProxies/EmailSettingsClientProxy.Generated.cs index 30340ab831..54895f25f7 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/ClientProxies/EmailSettingsClientProxy.Generated.cs +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/ClientProxies/EmailSettingsClientProxy.Generated.cs @@ -9,23 +9,22 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.SettingManagement; // ReSharper disable once CheckNamespace -namespace Volo.Abp.SettingManagement.ClientProxies +namespace Volo.Abp.SettingManagement.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(IEmailSettingsAppService), typeof(EmailSettingsClientProxy))] +public partial class EmailSettingsClientProxy : ClientProxyBase, IEmailSettingsAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(IEmailSettingsAppService), typeof(EmailSettingsClientProxy))] - public partial class EmailSettingsClientProxy : ClientProxyBase, IEmailSettingsAppService + public virtual async Task GetAsync() { - public virtual async Task GetAsync() - { - return await RequestAsync(nameof(GetAsync)); - } + return await RequestAsync(nameof(GetAsync)); + } - public virtual async Task UpdateAsync(UpdateEmailSettingsDto input) + public virtual async Task UpdateAsync(UpdateEmailSettingsDto input) + { + await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(UpdateEmailSettingsDto), input } - }); - } + { typeof(UpdateEmailSettingsDto), input } + }); } } diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/ClientProxies/TenantClientProxy.Generated.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/ClientProxies/TenantClientProxy.Generated.cs index c067cf66be..eb3b77feb0 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/ClientProxies/TenantClientProxy.Generated.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/ClientProxies/TenantClientProxy.Generated.cs @@ -9,76 +9,75 @@ using Volo.Abp.Http.Client.ClientProxying; using Volo.Abp.TenantManagement; // ReSharper disable once CheckNamespace -namespace Volo.Abp.TenantManagement.ClientProxies +namespace Volo.Abp.TenantManagement.ClientProxies; + +[Dependency(ReplaceServices = true)] +[ExposeServices(typeof(ITenantAppService), typeof(TenantClientProxy))] +public partial class TenantClientProxy : ClientProxyBase, ITenantAppService { - [Dependency(ReplaceServices = true)] - [ExposeServices(typeof(ITenantAppService), typeof(TenantClientProxy))] - public partial class TenantClientProxy : ClientProxyBase, ITenantAppService + public virtual async Task GetAsync(Guid id) { - public virtual async Task GetAsync(Guid id) + return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task> GetListAsync(GetTenantsInput input) + public virtual async Task> GetListAsync(GetTenantsInput input) + { + return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue { - return await RequestAsync>(nameof(GetListAsync), new ClientProxyRequestTypeValue - { - { typeof(GetTenantsInput), input } - }); - } + { typeof(GetTenantsInput), input } + }); + } - public virtual async Task CreateAsync(TenantCreateDto input) + public virtual async Task CreateAsync(TenantCreateDto input) + { + return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue - { - { typeof(TenantCreateDto), input } - }); - } + { typeof(TenantCreateDto), input } + }); + } - public virtual async Task UpdateAsync(Guid id, TenantUpdateDto input) + public virtual async Task UpdateAsync(Guid id, TenantUpdateDto input) + { + return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(UpdateAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(TenantUpdateDto), input } - }); - } + { typeof(Guid), id }, + { typeof(TenantUpdateDto), input } + }); + } - public virtual async Task DeleteAsync(Guid id) + public virtual async Task DeleteAsync(Guid id) + { + await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task GetDefaultConnectionStringAsync(Guid id) + public virtual async Task GetDefaultConnectionStringAsync(Guid id) + { + return await RequestAsync(nameof(GetDefaultConnectionStringAsync), new ClientProxyRequestTypeValue { - return await RequestAsync(nameof(GetDefaultConnectionStringAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); + } - public virtual async Task UpdateDefaultConnectionStringAsync(Guid id, string defaultConnectionString) + public virtual async Task UpdateDefaultConnectionStringAsync(Guid id, string defaultConnectionString) + { + await RequestAsync(nameof(UpdateDefaultConnectionStringAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(UpdateDefaultConnectionStringAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id }, - { typeof(string), defaultConnectionString } - }); - } + { typeof(Guid), id }, + { typeof(string), defaultConnectionString } + }); + } - public virtual async Task DeleteDefaultConnectionStringAsync(Guid id) + public virtual async Task DeleteDefaultConnectionStringAsync(Guid id) + { + await RequestAsync(nameof(DeleteDefaultConnectionStringAsync), new ClientProxyRequestTypeValue { - await RequestAsync(nameof(DeleteDefaultConnectionStringAsync), new ClientProxyRequestTypeValue - { - { typeof(Guid), id } - }); - } + { typeof(Guid), id } + }); } }