Browse Source
Merge pull request #5659 from abpframework/liangshiwei/patch-blogging
Move BlogDto to Volo.Blogging.Application.Contracts.Shared proejct
pull/5719/head
Yunus Emre Kalkan
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with
10 additions and
15 deletions
-
modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo/Blogging/Admin/Blogs/BlogDto.cs
-
modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo/Blogging/Admin/Blogs/IBlogManagementAppService.cs
-
modules/blogging/src/Volo.Blogging.Admin.Application/Volo/Blogging/Admin/BloggingAdminApplicationAutoMapperProfile.cs
-
modules/blogging/src/Volo.Blogging.Admin.Application/Volo/Blogging/Admin/Blogs/BlogManagementAppService.cs
-
modules/blogging/src/Volo.Blogging.Admin.HttpApi/Volo/Blogging/Admin/BlogManagementController.cs
-
modules/blogging/src/Volo.Blogging.Admin.Web/AbpBloggingAdminWebAutoMapperProfile.cs
-
modules/blogging/src/Volo.Blogging.Admin.Web/Pages/Blogging/Admin/Blogs/Edit.cshtml.cs
-
modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo/Blogging/Blogs/Dtos/BlogDto.cs
|
|
|
@ -1,14 +0,0 @@ |
|
|
|
using System; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
|
|
|
|
namespace Volo.Blogging.Admin.Blogs |
|
|
|
{ |
|
|
|
public class BlogDto : FullAuditedEntityDto<Guid> |
|
|
|
{ |
|
|
|
public string Name { get; set; } |
|
|
|
|
|
|
|
public string ShortName { get; set; } |
|
|
|
|
|
|
|
public string Description { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|
@ -2,6 +2,8 @@ |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
using Volo.Abp.Application.Services; |
|
|
|
using Volo.Blogging.Blogs; |
|
|
|
using Volo.Blogging.Blogs.Dtos; |
|
|
|
|
|
|
|
namespace Volo.Blogging.Admin.Blogs |
|
|
|
{ |
|
|
|
|
|
|
|
@ -1,6 +1,7 @@ |
|
|
|
using AutoMapper; |
|
|
|
using Volo.Blogging.Admin.Blogs; |
|
|
|
using Volo.Blogging.Blogs; |
|
|
|
using Volo.Blogging.Blogs.Dtos; |
|
|
|
|
|
|
|
namespace Volo.Blogging.Admin |
|
|
|
{ |
|
|
|
|
|
|
|
@ -4,6 +4,7 @@ using System.Collections.Generic; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
using Volo.Blogging.Blogs; |
|
|
|
using Volo.Blogging.Blogs.Dtos; |
|
|
|
|
|
|
|
namespace Volo.Blogging.Admin.Blogs |
|
|
|
{ |
|
|
|
|
|
|
|
@ -5,6 +5,8 @@ using Volo.Abp; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
using Volo.Abp.AspNetCore.Mvc; |
|
|
|
using Volo.Blogging.Admin.Blogs; |
|
|
|
using Volo.Blogging.Blogs; |
|
|
|
using Volo.Blogging.Blogs.Dtos; |
|
|
|
|
|
|
|
namespace Volo.Blogging.Admin |
|
|
|
{ |
|
|
|
|
|
|
|
@ -1,6 +1,8 @@ |
|
|
|
using AutoMapper; |
|
|
|
using Volo.Blogging.Admin.Blogs; |
|
|
|
using Volo.Blogging.Admin.Pages.Blogging.Admin.Blogs; |
|
|
|
using Volo.Blogging.Blogs; |
|
|
|
using Volo.Blogging.Blogs.Dtos; |
|
|
|
using EditModel = Volo.Blogging.Admin.Pages.Blogging.Admin.Blogs.EditModel; |
|
|
|
|
|
|
|
namespace Volo.Blogging.Admin |
|
|
|
|
|
|
|
@ -6,6 +6,7 @@ using Microsoft.AspNetCore.Mvc; |
|
|
|
using Volo.Abp.Validation; |
|
|
|
using Volo.Blogging.Admin.Blogs; |
|
|
|
using Volo.Blogging.Blogs; |
|
|
|
using Volo.Blogging.Blogs.Dtos; |
|
|
|
|
|
|
|
namespace Volo.Blogging.Admin.Pages.Blogging.Admin.Blogs |
|
|
|
{ |
|
|
|
|
|
|
|
@ -11,4 +11,4 @@ namespace Volo.Blogging.Blogs.Dtos |
|
|
|
|
|
|
|
public string Description { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|
} |