Ejemplo n.º 1
0
 public override string ToString()
 {
     return($"{Identificacion};{ValorTotal};{Cliente.ToString()};{Interes.ToString()}");
 }
Ejemplo n.º 2
0
 public Credito(string identificacion, Cliente cliente, Interes interes)
 {
     Identificacion = identificacion;
     Cliente        = cliente;
     Interes        = interes;
 }