public override string ToString() { return($"{Identificacion};{ValorTotal};{Cliente.ToString()};{Interes.ToString()}"); }
public Credito(string identificacion, Cliente cliente, Interes interes) { Identificacion = identificacion; Cliente = cliente; Interes = interes; }