CmsKit - Add missing IApplicationService

pull/8263/head
enisn 5 years ago
parent d6896bfcdd
commit e84d1848a0

@ -3,11 +3,12 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Volo.Abp.Application.Services;
using Volo.CmsKit.Blogs; using Volo.CmsKit.Blogs;
namespace Volo.CmsKit.Admin.Blogs namespace Volo.CmsKit.Admin.Blogs
{ {
public interface IBlogFeatureAdminAppService public interface IBlogFeatureAdminAppService : IApplicationService
{ {
Task SetAsync(Guid blogId, BlogFeatureInputDto dto); Task SetAsync(Guid blogId, BlogFeatureInputDto dto);

@ -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);

@ -1,10 +1,12 @@
using System.Threading.Tasks; using JetBrains.Annotations;
using JetBrains.Annotations; using System.Threading.Tasks;
using Volo.Abp.Application.Services;
namespace Volo.CmsKit.Public.Pages namespace Volo.CmsKit.Public.Pages
{ {
public interface IPagePublicAppService public interface IPagePublicAppService : IApplicationService
{ {
Task<PageDto> FindBySlugAsync([NotNull] string slug); Task<PageDto> FindBySlugAsync([NotNull] string slug);
} }
}
} }
Loading…
Cancel
Save