public async Task <IActionResult> getAll() { var result = await _projectCategoryService.GetAllAsync(); return(result); }
public async Task <IEnumerable <ProjectCategoryDto> > Get() { var projectCategories = await _projectCategoryService.GetAllAsync(); return(projectCategories); }