Esempio n. 1
0
 public static void ListarNomes()
 {
     Console.WriteLine("---Lista de Nomes---\r\n");
     nameController.GetNames().ToList().ForEach(x => Console.WriteLine($"Id: {x.Id} nome: {x.Nome}"));
 }