예제 #1
0
        static void Main(string[] args)
        {
            //cerveja.Cervejas.Add(new Cerveja() {Nome = "Camila"});
            // cerveja.SaveChanges();

            // cerveja.Cervejas.ToList<Cerveja>()
            //.ForEach(x => Console.WriteLine(x.Nome));

            cerveja.AddFCerveja(new Cerveja()
            {
                Nome = "Tônico Guaraná"
            });

            cerveja.GetCervejas()
            .ToList <Cerveja>()
            .ForEach(x => Console.WriteLine(x.Nome));

            Console.ReadKey();
        }