|
@@ -45,9 +45,9 @@ namespace GxPress.Repository.Implement.Category
|
|
|
return await _repository.GetAllAsync(Q.Where(nameof(Entity.tede2.Category.Category.TypeValue), typeValue));
|
|
|
}
|
|
|
|
|
|
- public async Task<Entity.tede2.Category.Category> GetAsync(int id)
|
|
|
+ public async Task<CategoryResult> GetAsync(int id)
|
|
|
{
|
|
|
- return await _repository.GetAsync(id);
|
|
|
+ return await _repository.GetAsync<CategoryResult>(Q.Where(nameof(Entity.tede2.Category.Category.Id),id));
|
|
|
}
|
|
|
|
|
|
public async Task<IEnumerable<CategoryResult>> GetCategoryChildrenAsync(int parentId, int typeValue)
|