using System.Collections.Generic;
public class ListaProdutos
public static List<Produto> GetList()
List<Produto> listaProdutos = new List<Produto>()
new Produto() { Id = 1, Nome = "Arroz", PrecoCusto = 12, Unidade = Produto.TipoDeUnidade.Kg.ToString(), Quantidade = 9 },
new Produto() { Id = 2, Nome = "Leite", PrecoCusto = 5, Unidade = Produto.TipoDeUnidade.Litro.ToString(), Quantidade = 6 }
public int Id { get; set; }
public string Nome { get; set; }
public string Unidade { get; set; }
public double Quantidade { get; set; }
public double PrecoCusto { get; set; }
return (PrecoCusto + PrecoCusto) / 3;
public enum TipoDeUnidade
public static void Main()
List<Produto> listaProdutos = ListaProdutos.GetList();
foreach(var lista in listaProdutos)
System.Console.WriteLine("{0} {1}", lista.Nome, lista.PrecoVenda);