using System.Collections.Generic;
using System.Threading.Tasks;
namespace GxPress.Service.Implement.Group
{
public partial class GroupService
{
///
/// 根据广场类别查询小组
///
///
///
public async Task> GetAllAsync(int categoryId)
{
return await _groupRepository.GetAllAsync(categoryId);
}
}
}