Package bean

Examples of bean.Estabelecimento


        String senha = SenhadaLoja.getText();
        double saldo;
       
        try {
            String nome_estab = banco.getEstabelecimentoDB(cnpj);       
            this.estabelecimento = new Estabelecimento(cnpj, nome_estab);
            boolean acesso = banco.checkSenhaEstabelecimentoDB(cnpj, senha);      
                       
            if (acesso){
                saldo = banco.getVendaTotalEstabelecimentoDB(cnpj);
                JanelaEst frame = new JanelaEst();
View Full Code Here


              }
         }
         else{
             try {
                 GerenciarDB estabelecimento = new GerenciarDB();
                 Estabelecimento shop = new Estabelecimento (cnpj, nomeLoja);
                 estabelecimento.addEstabelecimento(shop);
                 JanelaInicioAdmin frame = new JanelaInicioAdmin();
                 frame.setLocationRelativeTo(null);
                 frame.setVisible(true);
                 this.dispose();
View Full Code Here

TOP

Related Classes of bean.Estabelecimento

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.