Package maissocial.entidade

Examples of maissocial.entidade.Org


    public static void main(String[] args){


        Logradouro lg = null;
        Org org = null;
        Date data = new Date();

        try {
            lg = Fachada.getInstance().getLogradouroControle().pesquisarLogradouroPorCodigo(1);
            org = new Org (lg, "SECRETARIA DE ACAO SOCIAL DE PESQUEIRA", "12345678912123", "11111111", data, 1);
            Fachada.getInstance().getOrgControle().salvarOrg(org);
            JOptionPane.showMessageDialog(null, "Organização cadastrada com sucesso!");
            Org org2 = Fachada.getInstance().getOrgControle().pesquisarOrgPorCodigo(1);
            System.out.print(org2.getNome());

        } catch (Exception ex) {
            Logger.getLogger(OrgGUI.class.getName()).log(Level.SEVERE, null, ex);
        }
View Full Code Here

TOP

Related Classes of maissocial.entidade.Org

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.