Created
August 17, 2017 21:15
-
-
Save fazd/4cc7e472c66c9ee97df60fcc7844a26b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package Model; | |
/** | |
* | |
* @author usuario | |
*/ | |
public class Cliente { | |
private Sucursal sucursal; | |
private String CDT; | |
private String TC; | |
private Float Prestamo; | |
private String Cuenta; | |
private boolean Ejecutivo; | |
public Cliente(Sucursal a){ | |
this.sucursal = a; | |
} | |
public Sucursal getSucursal() { | |
return sucursal; | |
} | |
public void setSucursal(Sucursal sucursal) { | |
this.sucursal = sucursal; | |
} | |
public String getCDT() { | |
return CDT; | |
} | |
public void setCDT(String CDT) { | |
this.CDT = CDT; | |
} | |
public String getTC() { | |
return TC; | |
} | |
public void setTC(String TC) { | |
this.TC = TC; | |
} | |
public Float getPrestamo() { | |
return Prestamo; | |
} | |
public void setPrestamo(Float Prestamo) { | |
this.Prestamo = Prestamo; | |
} | |
public String getCuenta() { | |
return Cuenta; | |
} | |
public void setCuenta(String Cuenta) { | |
this.Cuenta = Cuenta; | |
} | |
public boolean isEjecutivo() { | |
return Ejecutivo; | |
} | |
public void setEjecutivo(boolean Ejecutivo) { | |
this.Ejecutivo = Ejecutivo; | |
} | |
public float montoCliente(){ | |
float monto= | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment