Browse Source

content app service renaming.

pull/7784/head
Ilkay Ilknur 5 years ago
parent
commit
e586f8fb85
  1. 4
      modules/cms-kit/src/Volo.CmsKit.Public.Application.Contracts/Volo/CmsKit/Public/Contents/IContentPublicAppService.cs
  2. 2
      modules/cms-kit/src/Volo.CmsKit.Public.Application/Volo/CmsKit/Public/Contents/ContentPublicAppService.cs
  3. 6
      modules/cms-kit/src/Volo.CmsKit.Public.HttpApi/Volo/CmsKit/Public/Contents/ContentController.cs
  4. 4
      modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Contents/ContentViewComponent.cs

4
modules/cms-kit/src/Volo.CmsKit.Public.Application.Contracts/Volo/CmsKit/Public/Contents/IContentAppService.cs → modules/cms-kit/src/Volo.CmsKit.Public.Application.Contracts/Volo/CmsKit/Public/Contents/IContentPublicAppService.cs

@ -3,8 +3,8 @@ using Volo.CmsKit.Contents;
namespace Volo.CmsKit.Public.Contents
{
public interface IContentAppService
public interface IContentPublicAppService
{
Task<ContentDto> GetAsync(GetContentInput input);
}
}
}

2
modules/cms-kit/src/Volo.CmsKit.Public.Application/Volo/CmsKit/Public/Contents/ContentPublicAppService.cs

@ -3,7 +3,7 @@ using Volo.CmsKit.Contents;
namespace Volo.CmsKit.Public.Contents
{
public class ContentPublicAppService : CmsKitAppServiceBase, IContentAppService
public class ContentPublicAppService : CmsKitPublicAppServiceBase, IContentPublicAppService
{
protected IContentRepository ContentRepository { get; }

6
modules/cms-kit/src/Volo.CmsKit.Public.HttpApi/Volo/CmsKit/Public/Contents/ContentController.cs

@ -9,11 +9,11 @@ namespace Volo.CmsKit.Public.Contents
[RemoteService(Name = CmsKitCommonRemoteServiceConsts.RemoteServiceName)]
[Area("cms-kit")]
[Route("api/cms-kit-public/contents")]
public class ContentController : CmsKitControllerBase, IContentAppService
public class ContentController : CmsKitControllerBase, IContentPublicAppService
{
protected readonly IContentAppService _contentAppService;
protected readonly IContentPublicAppService _contentAppService;
public ContentController(IContentAppService contentAppService)
public ContentController(IContentPublicAppService contentAppService)
{
_contentAppService = contentAppService;
}

4
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Contents/ContentViewComponent.cs

@ -12,11 +12,11 @@ namespace Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.Contents
public class ContentViewComponent : AbpViewComponent
{
private readonly IContentRenderer contentRenderer;
private readonly IContentAppService contentAppService;
private readonly IContentPublicAppService contentAppService;
public ContentViewComponent(
IContentRenderer contentRenderer,
IContentAppService contentAppService)
IContentPublicAppService contentAppService)
{
this.contentRenderer = contentRenderer;
this.contentAppService = contentAppService;

Loading…
Cancel
Save