Esempio n. 1
0
 public async Task <Episode> GetByIdAsync(int id) => // Get episodes from db or API
 _episodes.Any(e => e.Id == id)
         ? GetAll().SingleOrDefault(e => e.Id == id)
         : await _episodeService.GetEpisodeByIdAsync(id);