12345678910111213141516171819202122 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Entity.Topic;
- namespace GxPress.Service.Interface.Topic
- {
- public interface ITopicGroupService : IService
- {
-
-
-
-
-
- Task<IEnumerable<TopicGroup>> GetTopicGroupsAsync(int userId);
-
-
-
-
-
- Task<IEnumerable<TopicGroup>> GetListTopicGroupsAsync(int userId);
- }
- }
|