Package br.com.moonjava.flight.dao.base

Examples of br.com.moonjava.flight.dao.base.AeronaveDAO.deletar()


    for (Voo voo : antesVoo) {
      passagemDAO.cancelarPorVoo(voo);
    }

    vooDAO.deletarPorAeronaveId(id);
    aeronaveDAO.deletar(id);

    List<Voo> resVoo = vooDAO.consultarPorAeronaveId(id);
    assertThat(resVoo.size(), equalTo(0));

    List<Aeronave> resAeronave = aeronaveDAO.consultar(request);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.