コード例 #1
0
ファイル: Credito.cs プロジェクト: Godiex/Servicredito
 public override string ToString()
 {
     return($"{Identificacion};{ValorTotal};{Cliente.ToString()};{Interes.ToString()}");
 }
コード例 #2
0
ファイル: Credito.cs プロジェクト: Godiex/Servicredito
 public Credito(string identificacion, Cliente cliente, Interes interes)
 {
     Identificacion = identificacion;
     Cliente        = cliente;
     Interes        = interes;
 }