mirror of https://github.com/abpframework/abp.git
16 changed files with 0 additions and 409 deletions
@ -1,71 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Contents; |
|||
using Volo.CmsKit.Public.Blogs; |
|||
using Volo.CmsKit.Users; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Blogs; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(IBlogPostPublicAppService), typeof(BlogPostPublicClientProxy))] |
|||
public partial class BlogPostPublicClientProxy : ClientProxyBase<IBlogPostPublicAppService>, IBlogPostPublicAppService |
|||
{ |
|||
public virtual async Task<BlogPostCommonDto> GetAsync(string blogSlug, string blogPostSlug) |
|||
{ |
|||
return await RequestAsync<BlogPostCommonDto>(nameof(GetAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), blogSlug }, |
|||
{ typeof(string), blogPostSlug } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<PagedResultDto<BlogPostCommonDto>> GetListAsync(string blogSlug, BlogPostGetListInput input) |
|||
{ |
|||
return await RequestAsync<PagedResultDto<BlogPostCommonDto>>(nameof(GetListAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), blogSlug }, |
|||
{ typeof(BlogPostGetListInput), input } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<PagedResultDto<CmsUserDto>> GetAuthorsHasBlogPostsAsync(BlogPostFilteredPagedAndSortedResultRequestDto input) |
|||
{ |
|||
return await RequestAsync<PagedResultDto<CmsUserDto>>(nameof(GetAuthorsHasBlogPostsAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(BlogPostFilteredPagedAndSortedResultRequestDto), input } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<CmsUserDto> GetAuthorHasBlogPostAsync(Guid id) |
|||
{ |
|||
return await RequestAsync<CmsUserDto>(nameof(GetAuthorHasBlogPostAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(Guid), id } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task DeleteAsync(Guid id) |
|||
{ |
|||
await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(Guid), id } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<string> GetTagNameAsync(Guid tagId) |
|||
{ |
|||
return await RequestAsync<string>(nameof(GetTagNameAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(Guid), tagId } |
|||
}); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of BlogPostPublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Blogs; |
|||
|
|||
public partial class BlogPostPublicClientProxy |
|||
{ |
|||
} |
|||
@ -1,55 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Public.Comments; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Comments; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(ICommentPublicAppService), typeof(CommentPublicClientProxy))] |
|||
public partial class CommentPublicClientProxy : ClientProxyBase<ICommentPublicAppService>, ICommentPublicAppService |
|||
{ |
|||
public virtual async Task<ListResultDto<CommentWithDetailsDto>> GetListAsync(string entityType, string entityId) |
|||
{ |
|||
return await RequestAsync<ListResultDto<CommentWithDetailsDto>>(nameof(GetListAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<CommentDto> CreateAsync(string entityType, string entityId, CreateCommentInput input) |
|||
{ |
|||
return await RequestAsync<CommentDto>(nameof(CreateAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId }, |
|||
{ typeof(CreateCommentInput), input } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<CommentDto> UpdateAsync(Guid id, UpdateCommentInput input) |
|||
{ |
|||
return await RequestAsync<CommentDto>(nameof(UpdateAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(Guid), id }, |
|||
{ typeof(UpdateCommentInput), input } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task DeleteAsync(Guid id) |
|||
{ |
|||
await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(Guid), id } |
|||
}); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of CommentPublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Comments; |
|||
|
|||
public partial class CommentPublicClientProxy |
|||
{ |
|||
} |
|||
@ -1,29 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Public.GlobalResources; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.GlobalResources; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(IGlobalResourcePublicAppService), typeof(GlobalResourcePublicClientProxy))] |
|||
public partial class GlobalResourcePublicClientProxy : ClientProxyBase<IGlobalResourcePublicAppService>, IGlobalResourcePublicAppService |
|||
{ |
|||
public virtual async Task<GlobalResourceDto> GetGlobalScriptAsync() |
|||
{ |
|||
return await RequestAsync<GlobalResourceDto>(nameof(GetGlobalScriptAsync)); |
|||
} |
|||
|
|||
public virtual async Task<GlobalResourceDto> GetGlobalStyleAsync() |
|||
{ |
|||
return await RequestAsync<GlobalResourceDto>(nameof(GetGlobalStyleAsync)); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of GlobalResourcePublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.GlobalResources; |
|||
|
|||
public partial class GlobalResourcePublicClientProxy |
|||
{ |
|||
} |
|||
@ -1,25 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Menus; |
|||
using Volo.CmsKit.Public.Menus; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Menus; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(IMenuItemPublicAppService), typeof(MenuItemPublicClientProxy))] |
|||
public partial class MenuItemPublicClientProxy : ClientProxyBase<IMenuItemPublicAppService>, IMenuItemPublicAppService |
|||
{ |
|||
public virtual async Task<List<MenuItemDto>> GetListAsync() |
|||
{ |
|||
return await RequestAsync<List<MenuItemDto>>(nameof(GetListAsync)); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of MenuItemPublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Menus; |
|||
|
|||
public partial class MenuItemPublicClientProxy |
|||
{ |
|||
} |
|||
@ -1,41 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Contents; |
|||
using Volo.CmsKit.Public.Pages; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Pages; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(IPagePublicAppService), typeof(PagesPublicClientProxy))] |
|||
public partial class PagesPublicClientProxy : ClientProxyBase<IPagePublicAppService>, IPagePublicAppService |
|||
{ |
|||
public virtual async Task<PageDto> FindBySlugAsync(string slug) |
|||
{ |
|||
return await RequestAsync<PageDto>(nameof(FindBySlugAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), slug } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<PageDto> FindDefaultHomePageAsync() |
|||
{ |
|||
return await RequestAsync<PageDto>(nameof(FindDefaultHomePageAsync)); |
|||
} |
|||
|
|||
public virtual async Task<bool> DoesSlugExistAsync(string slug) |
|||
{ |
|||
return await RequestAsync<bool>(nameof(DoesSlugExistAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), slug } |
|||
}); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of PagesPublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Pages; |
|||
|
|||
public partial class PagesPublicClientProxy |
|||
{ |
|||
} |
|||
@ -1,47 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Public.Ratings; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Ratings; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(IRatingPublicAppService), typeof(RatingPublicClientProxy))] |
|||
public partial class RatingPublicClientProxy : ClientProxyBase<IRatingPublicAppService>, IRatingPublicAppService |
|||
{ |
|||
public virtual async Task<RatingDto> CreateAsync(string entityType, string entityId, CreateUpdateRatingInput input) |
|||
{ |
|||
return await RequestAsync<RatingDto>(nameof(CreateAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId }, |
|||
{ typeof(CreateUpdateRatingInput), input } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task DeleteAsync(string entityType, string entityId) |
|||
{ |
|||
await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<List<RatingWithStarCountDto>> GetGroupedStarCountsAsync(string entityType, string entityId) |
|||
{ |
|||
return await RequestAsync<List<RatingWithStarCountDto>>(nameof(GetGroupedStarCountsAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId } |
|||
}); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of RatingPublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Ratings; |
|||
|
|||
public partial class RatingPublicClientProxy |
|||
{ |
|||
} |
|||
@ -1,48 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Public.Reactions; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Reactions; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(IReactionPublicAppService), typeof(ReactionPublicClientProxy))] |
|||
public partial class ReactionPublicClientProxy : ClientProxyBase<IReactionPublicAppService>, IReactionPublicAppService |
|||
{ |
|||
public virtual async Task<ListResultDto<ReactionWithSelectionDto>> GetForSelectionAsync(string entityType, string entityId) |
|||
{ |
|||
return await RequestAsync<ListResultDto<ReactionWithSelectionDto>>(nameof(GetForSelectionAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task CreateAsync(string entityType, string entityId, string reaction) |
|||
{ |
|||
await RequestAsync(nameof(CreateAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId }, |
|||
{ typeof(string), reaction } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task DeleteAsync(string entityType, string entityId, string reaction) |
|||
{ |
|||
await RequestAsync(nameof(DeleteAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId }, |
|||
{ typeof(string), reaction } |
|||
}); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of ReactionPublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Reactions; |
|||
|
|||
public partial class ReactionPublicClientProxy |
|||
{ |
|||
} |
|||
@ -1,37 +0,0 @@ |
|||
// This file is automatically generated by ABP framework to use MVC Controllers from CSharp
|
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp; |
|||
using Volo.Abp.Application.Dtos; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.Http.Modeling; |
|||
using Volo.CmsKit.Tags; |
|||
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Tags; |
|||
|
|||
[Dependency(ReplaceServices = true)] |
|||
[ExposeServices(typeof(ITagAppService), typeof(TagPublicClientProxy))] |
|||
public partial class TagPublicClientProxy : ClientProxyBase<ITagAppService>, ITagAppService |
|||
{ |
|||
public virtual async Task<List<TagDto>> GetAllRelatedTagsAsync(string entityType, string entityId) |
|||
{ |
|||
return await RequestAsync<List<TagDto>>(nameof(GetAllRelatedTagsAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(string), entityId } |
|||
}); |
|||
} |
|||
|
|||
public virtual async Task<List<PopularTagDto>> GetPopularTagsAsync(string entityType, int maxCount) |
|||
{ |
|||
return await RequestAsync<List<PopularTagDto>>(nameof(GetPopularTagsAsync), new ClientProxyRequestTypeValue |
|||
{ |
|||
{ typeof(string), entityType }, |
|||
{ typeof(int), maxCount } |
|||
}); |
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
// This file is part of TagPublicClientProxy, you can customize it here
|
|||
// ReSharper disable once CheckNamespace
|
|||
namespace Volo.CmsKit.Public.Tags; |
|||
|
|||
public partial class TagPublicClientProxy |
|||
{ |
|||
} |
|||
Loading…
Reference in new issue