@ -1,8 +1,9 @@
using System.Threading.Tasks;
using Volo.Abp.Application.Services;
namespace Volo.CmsKit.Admin.Tags
{
public interface IEntityTagAdminAppService
public interface IEntityTagAdminAppService : IApplicationService
Task AddTagToEntityAsync(EntityTagCreateDto input);
@ -1,9 +1,10 @@
using System;
using System.Threading.Tasks;
namespace Volo.CmsKit.Blogs
public interface IBlogFeatureAppService
public interface IBlogFeatureAppService : IApplicationService
Task<BlogFeatureDto> GetOrDefaultAsync(Guid blogId, string featureName);
}