using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using GxPress.Common.Page; using GxPress.Request.App.TopicAnalyze; using GxPress.Request.NoticeAnalyze; using GxPress.Result.App.Topic; using GxPress.Result.Notice; using Datory; using GxPress.Entity.Topic; namespace GxPress.Repository.Interface { public interface ITopicAnalyzeRepository:IRepository { Task SetTopicAnalyzeAsync(TopicAnalyzeRequest request); Task> GetTopicPraisePageAsync(TopicPraisePageSearchRequest request); Task CountAsync(SqlKata.Query query); Task GetAsync(SqlKata.Query query); Task DeleteAsync(int id); } }