12345678910111213141516171819 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- namespace GxPress.Service.Implement.Group
- {
- public partial class GroupService
- {
- /// <summary>
- /// 根据广场类别查询小组
- /// </summary>
- /// <param name="categoryId"></param>
- /// <returns></returns>
- public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId)
- {
- return await _groupRepository.GetAllAsync(categoryId);
- }
- }
- }
|