Package br.com.fiapfuncionarios.dominio

Examples of br.com.fiapfuncionarios.dominio.Funcionario


     
     
      ResultSet resultSet = preparedStatement.executeQuery();
     
      while (resultSet.next()) {
        funcionario = new Funcionario();
        funcionario.setId(resultSet.getInt(1));
        funcionario.setLogin(resultSet.getString(2));
        funcionario.setCargo(resultSet.getString(3));
      }
    } catch (Exception e) {
View Full Code Here


 
  @Test
  public void testRemoverFuncionarioIDNull() {
    Exception ex = null;
    try {
      gerenciadorDeFuncionarioBeanTest.Remover(new Funcionario());
    } catch (Exception e) {
      ex = e;
    }
    assertNotNull(ex);
 
View Full Code Here

  private Integer idFuncionarioSelecionado;

 
  @PostConstruct
  public void init(){
    funcionario = new Funcionario();
  }
View Full Code Here

TOP

Related Classes of br.com.fiapfuncionarios.dominio.Funcionario

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.