/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package maissocial.gui;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
import maissocial.controle.Fachada;
import maissocial.entidade.Bairro;
import maissocial.entidade.Cidade;
/**
*
* @author luciano
*/
public class BairroGUI {
public static void main(String[] args){
Cidade cd = null;
Bairro br = null;
try {
cd = Fachada.getInstance().getCidadeControle().pesquisarCidadePorCodigo(1);
br = new Bairro (cd, "Boa Vista", 1);
Fachada.getInstance().getBairroControle().salvarBairro(br);
JOptionPane.showMessageDialog(null, "Bairro cadastrado com sucesso!");
Bairro br2 = Fachada.getInstance().getBairroControle().pesquisarBairroPorCodigo(1);
System.out.print(br2.getNome());
} catch (Exception ex) {
Logger.getLogger(BairroGUI.class.getName()).log(Level.SEVERE, null, ex);
}
}
}