示例#1
0
 public IList <long> CreateFavoriteCategory(int categoryId, string title, IList <long> labelIds)
 {
     return(m_favoriteManager.CreateFavoriteCategory(categoryId, title, labelIds));
 }
示例#2
0
        public long CreateFavoriteCategory([FromBody] CreateFavoriteCategoryContract data)
        {
            var resultId = m_favoriteManager.CreateFavoriteCategory(data);

            return(resultId);
        }