public bool ModificarReg(int pos) { try { ClsCuenta nuevaCuenta = LeerRegistro(pos); EscribirRegistro(pos, nuevaCuenta); return(true); } catch (IOException e) { CerrarFichero(); return(false); } }
public static string RecargarCuenta(ClsCuenta cuenta, double cantidad) { if (cantidad > 0) { cuenta.Cantidad += cantidad; return($"Se han recargado: $ {darFormato(cantidad)} pesos."); } else { return("No se permiten valores negativos."); } }
public static string RetirarDinero(ClsCuenta cuenta, double cantidad) { if (cantidad > 0) { if (cantidad > cuenta.Cantidad) { return("Fondos insuficientes"); } else { cuenta.Cantidad -= cantidad; return($"Retiro existoso de $ {darFormato(cantidad)} pesos."); } } else { return("No se permiten valores negativos."); } }
public static string ConsultarSaldo(ClsCuenta cuenta) { return($"$ {darFormato(cuenta.Cantidad)}"); }