Skip to content

Commit

Permalink
Remove ITreeDto.
Browse files Browse the repository at this point in the history
Make project tag app service public
  • Loading branch information
RayMMond committed Jun 29, 2020
1 parent 1b5f025 commit b1d3409
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
using System;
using EasyAbp.Abp.Trees.Dtos;
using Volo.Abp.Application.Dtos;

namespace EasyAbp.EShop.Products.Categories.Dtos
{
public class CategoryDto : FullAuditedEntityDto<Guid>, ITreeDto
public class CategoryDto : FullAuditedEntityDto<Guid>
{
public Guid? ParentId { get; set; }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
using System;
using EasyAbp.Abp.Trees.Dtos;
using Volo.Abp.Application.Dtos;

namespace EasyAbp.EShop.Products.Tags.Dtos
{
public class TagDto : ExtensibleFullAuditedEntityDto<Guid>, ITreeDto
public class TagDto : ExtensibleFullAuditedEntityDto<Guid>
{
public Guid StoreId { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace EasyAbp.EShop.Products.ProductTags
{
class ProductTagAppService : CrudAppService<ProductTag, ProductTagDto, Guid, GetProductTagListDto, object, object>,
public class ProductTagAppService : CrudAppService<ProductTag, ProductTagDto, Guid, GetProductTagListDto, object, object>,
IProductTagAppService
{
public ProductTagAppService(IRepository<ProductTag, Guid> repository) : base(repository)
Expand Down

0 comments on commit b1d3409

Please sign in to comment.