public async Task <Movie> FindAsync(string id) { var movieDto = await _movieDao.FindAsync(id); return(_movieFactory.ToModel(movieDto)); }