public static bool operator ==(Pesos p, Dolar d) { if (p.GetCantidad() == (d.GetCantidad() * Dolar.GetCotizacion())) { return(true); } return(false); }
public static Euro operator -(Euro e, Dolar d) { return(new Euro(e.cantidad - (d.GetCantidad() * Dolar.GetCotizacion()))); }
public static Pesos operator -(Pesos p, Dolar d) { return(new Pesos(p.cantidad - (d.GetCantidad() * Dolar.GetCotizacion()))); }