mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
745 B
26 lines
745 B
using System;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Http.Client;
|
|
using Volo.Abp.Http.Modeling;
|
|
using Volo.CmsKit.Admin.Blogs;
|
|
using System.Collections.Generic;
|
|
using Volo.CmsKit.Blogs;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Volo.CmsKit.Admin.Blogs.ClientProxies
|
|
{
|
|
public partial class BlogFeatureAdminClientProxy
|
|
{
|
|
public virtual async Task<List<BlogFeatureDto>> GetListAsync(Guid blogId)
|
|
{
|
|
return await RequestAsync<List<BlogFeatureDto>>(nameof(GetListAsync), blogId);
|
|
}
|
|
|
|
public virtual async Task SetAsync(Guid blogId, BlogFeatureInputDto dto)
|
|
{
|
|
await RequestAsync(nameof(SetAsync), blogId, dto);
|
|
}
|
|
|
|
}
|
|
}
|
|
|