mirror of https://github.com/abpframework/abp
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.
21 lines
695 B
21 lines
695 B
using System;
|
|
using System.Threading.Tasks;
|
|
using JetBrains.Annotations;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Application.Services;
|
|
using Volo.CmsKit.Contents;
|
|
using Volo.CmsKit.Users;
|
|
|
|
namespace Volo.CmsKit.Public.Blogs;
|
|
|
|
public interface IBlogPostPublicAppService : IApplicationService
|
|
{
|
|
Task<PagedResultDto<BlogPostCommonDto>> GetListAsync([NotNull] string blogSlug, BlogPostGetListInput input);
|
|
|
|
Task<BlogPostCommonDto> GetAsync([NotNull] string blogSlug, [NotNull] string blogPostSlug);
|
|
|
|
Task<PagedResultDto<CmsUserDto>> GetAuthorsHasBlogPostsAsync(BlogPostFilteredPagedAndSortedResultRequestDto input);
|
|
|
|
Task<CmsUserDto> GetAuthorHasBlogPostAsync(Guid id);
|
|
}
|