12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Result.App.ArticleLabel;
- namespace GxPress.Service.Interface.ArticleLabel
- {
- public interface IArticleLabelService : IService
- {
-
-
-
-
-
- Task<int> InsertAsync(string labelName);
-
-
-
-
- Task<IEnumerable<Entity.ArticleLabel.ArticleLabel>> GetArticleLabelsAsync();
-
-
-
-
-
-
- Task<bool> AddArticleInnerLabel(int articleId, List<int> articleLabelIds);
-
-
-
-
-
- Task<IEnumerable<ArticleInnerLabelResult>> GetArticleLabelsAsync(int articleId);
-
-
-
-
-
- Task<IEnumerable<int>> GetShieldArticleIdsAsync(int articleId);
- }
- }
|