public async Task <IActionResult> UpdateFavoriteTask([FromRoute] string id) { var res = await _taskService.AddFavorite(id); return(Ok(res)); }