-
-
Save fazd/f160aeec8af93900c966f436e68bd88b 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 Sucursal { | |
private Cliente clientes[]; | |
private String Cuentas[]; | |
private String CDT[]; | |
private String TC[]; | |
private float Prestamos[]; | |
private boolean Ejecutivos[]; | |
int indexC=0; | |
public Sucursal(){ | |
} | |
public void addCliente(Cliente a){ | |
this.clientes[indexC]=a; | |
indexC++; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment