Created
August 17, 2017 21:14
-
-
Save fazd/b9c4d61297e4467480767d4345f43951 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 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