public async Task <IActionResult> BlogDetailAsync(int id) { var blog = await blogApiService.GetById(id); return(View(blog)); }