void PrintAll() { IEnumerable <Cast> castCollection = castService.GetAll(); foreach (var item in castCollection) { Console.WriteLine(item.Id + " \t " + item.Name + " \t " + item.Gender + " \t " + item.TmdbUrl + " \t " + item.ProfilePath); } }