Skip to content

Commit

Permalink
Merge pull request abpframework#8263 from abpframework/enisn/cms-kit/…
Browse files Browse the repository at this point in the history
…application-service-fix

CmsKit - Add missing IApplicationService
  • Loading branch information
berkansasmaz authored Mar 30, 2021
2 parents 26f02ee + 0285b1b commit 3cd2b58
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Application.Services;
using Volo.CmsKit.Blogs;

namespace Volo.CmsKit.Admin.Blogs
{
public interface IBlogFeatureAdminAppService
public interface IBlogFeatureAdminAppService : IApplicationService
{
Task SetAsync(Guid blogId, BlogFeatureInputDto dto);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
using JetBrains.Annotations;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Content;
using Volo.Abp.Application.Services;

namespace Volo.CmsKit.Public.Blogs
{
public interface IBlogPostPublicAppService
public interface IBlogPostPublicAppService : IApplicationService
{
Task<PagedResultDto<BlogPostPublicDto>> GetListAsync([NotNull] string blogSlug, PagedAndSortedResultRequestDto input);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using System.Threading.Tasks;
using JetBrains.Annotations;
using JetBrains.Annotations;
using System.Threading.Tasks;
using Volo.Abp.Application.Services;

namespace Volo.CmsKit.Public.Pages
{
public interface IPagePublicAppService
public interface IPagePublicAppService : IApplicationService
{
Task<PageDto> FindBySlugAsync([NotNull] string slug);
}
Expand Down

0 comments on commit 3cd2b58

Please sign in to comment.