Skip to content

Instantly share code, notes, and snippets.

@fazd
Created August 17, 2017 21:15
Show Gist options
  • Save fazd/f160aeec8af93900c966f436e68bd88b to your computer and use it in GitHub Desktop.
Save fazd/f160aeec8af93900c966f436e68bd88b to your computer and use it in GitHub Desktop.
/*
* 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