public IResponseResult GetCategoryList()
        {
            var result = BizCategory.GetCategoryList(UserModel);

            return(ReturnResult(result));
        }
Beispiel #2
0
 public IResponseResult GetCategoryList(int page, int limit, string keyword = null)
 {
     return(Biz.GetCategoryList(UserModel, page, limit, keyword));
 }