Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ICategoryService.cs 569B

1234567891011121314151617
  1. using Diligent.WebAPI.Contracts.DTOs.Categories;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Diligent.WebAPI.Business.Services.Interfaces
  8. {
  9. public interface ICategoryService
  10. {
  11. Task<List<CategoriesNamesResponse>> GetRootCategories(int userId);
  12. Task<List<CategoriesNamesResponse>> GetChildCategories(int parentCategoryId,int userId);
  13. Task<Category> GetCategoryEntityById(int id);
  14. Task<List<IsGrantedCategory>> GetCategories(int userId);
  15. }
  16. }