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 Jul 12, 2020
1 parent 66d26d8 commit c4243a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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.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 c4243a5

Please sign in to comment.