Skip to content

Instantly share code, notes, and snippets.

View bernardobrezende's full-sized avatar
:shipit:

Bernardo Bosak de Rezende bernardobrezende

:shipit:
View GitHub Profile
public class NotaFiscal : Entidade
{
private IList<Item> itens;
public virtual IEnumerable<Item> Itens { get { return this.itens; } }
public virtual string Descricao { get; set; }
public virtual decimal ValorTotal { get; protected set; }
protected NotaFiscal() { }
public NotaFiscal(string descricao)