예제 #1
0
            public CompraDetalle Build()
            {
                CompraDetalle compra = null;

                if (ValidarConstruccion())
                {
                    return(new CompraDetalle(this));
                }
                return(compra);
            }
예제 #2
0
 public void AddDetalle(CompraDetalle detalle)
 {
     this.DetallesCompra.Add(detalle);
     this.Total += detalle.GetTotal();
 }