14 lines
412 B
C#
14 lines
412 B
C#
using DOAN.Model;
|
|
using DOAN.Model.Content;
|
|
using DOAN.Model.Content.Dto;
|
|
|
|
namespace DOAN.Service.Content.IService
|
|
{
|
|
public interface IArticleCategoryService : IBaseService<ArticleCategory>
|
|
{
|
|
PagedInfo<ArticleCategory> GetList(ArticleCategoryQueryDto parm);
|
|
List<ArticleCategory> GetTreeList(ArticleCategoryQueryDto parm);
|
|
int AddArticleCategory(ArticleCategory parm);
|
|
}
|
|
}
|