|
|
@ -1,13 +1,11 @@
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
using Volo.Abp.Content;
|
|
|
|
using Volo.Abp.Application.Services;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Volo.CmsKit.Public.Blogs
|
|
|
|
namespace Volo.CmsKit.Public.Blogs
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public interface IBlogPostPublicAppService
|
|
|
|
public interface IBlogPostPublicAppService : IApplicationService
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Task<PagedResultDto<BlogPostPublicDto>> GetListAsync([NotNull] string blogSlug, PagedAndSortedResultRequestDto input);
|
|
|
|
Task<PagedResultDto<BlogPostPublicDto>> GetListAsync([NotNull] string blogSlug, PagedAndSortedResultRequestDto input);
|
|
|
|
|
|
|
|
|
|
|
|