static void Main(string[] args) { var produto = new Produto { Id = 1, Nome = "martelo" }; var produtoPerecivel = new Perecivel { Id = 2, Nome = "maçã", Vencimento = DateTime.Now.AddDays(2) }; Console.WriteLine(produto); Console.WriteLine(produtoPerecivel); Console.ReadKey(); }
/// <summary> /// Deprecated Method for adding a new object to the Produtos EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToProdutos(Produto produto) { base.AddObject("Produtos", produto); }
/// <summary> /// Create a new Produto object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="nome">Initial value of the Nome property.</param> public static Produto CreateProduto(global::System.Int32 id, global::System.String nome) { Produto produto = new Produto(); produto.Id = id; produto.Nome = nome; return produto; }