public async Task <IActionResult> GetCoursesByCategory(long categoryId) { var courses = await _courseAppService.GetCoursesByCategory(categoryId); return(Ok(courses)); }