public async Task <IActionResult> Fetch(long id) { var film = await Films.Fetch(id); if (film == null) { return(NotFound()); } return(Ok(film)); }