public Cotizacion(Vendedor vendedor, Prenda prenda, int cantidad) { this.vendedor = vendedor; this.prenda = prenda; this.cantidad = cantidad; this.total = this.calculaTotal(); }
public void quitarPrenda(Prenda prenda) { listado.Remove(prenda); }
public void agregarPrenda(Prenda prenda) { listado.Add(prenda); }