public CompraDetalle Build() { CompraDetalle compra = null; if (ValidarConstruccion()) { return(new CompraDetalle(this)); } return(compra); }
public void AddDetalle(CompraDetalle detalle) { this.DetallesCompra.Add(detalle); this.Total += detalle.GetTotal(); }