public void AgregarItemADetalle() { DetalleFactura.Add(new DetalleFacturaViewModel { IdProducto = CabeceraIdProducto, NombreProducto = CabeceraNombreProducto, PrecioUnitario = CabeceraPrecioProducto, Cantidad = CabeceraCantidadProducto, }); Refrescar(); }
public bool ExisteEnDetalle(int IdProducto) { return(DetalleFactura.Any(x => x.IdProducto == IdProducto)); }