Skip to content

Instantly share code, notes, and snippets.

@fazd
Created August 17, 2017 21:14
Show Gist options
  • Save fazd/b9c4d61297e4467480767d4345f43951 to your computer and use it in GitHub Desktop.
Save fazd/b9c4d61297e4467480767d4345f43951 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 Banco {
Sucursal sucursales[];
int IndexS=0;
public Banco(Sucursal a){
this.sucursales[IndexS]=a;
IndexS++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment