예제 #1
0
        public async Task <IActionResult> getAll()
        {
            var result = await _projectCategoryService.GetAllAsync();

            return(result);
        }
예제 #2
0
        public async Task <IEnumerable <ProjectCategoryDto> > Get()
        {
            var projectCategories = await _projectCategoryService.GetAllAsync();

            return(projectCategories);
        }