Package factories

Examples of factories.FabReservation.reservationExiste()


  public void annulerReservation(String id)
    throws ImpossibleTaskException, ReservationInexistanteException{
    FabReservation fr = FabReservation.getInstance();
    try{
      fr.setConnection(gc.getConnection());
      if(!fr.reservationExiste(id)){
        throw new ReservationInexistanteException("La reservation "
            +id+" n'existe pas");
      }
      fr.supprimerReservation(id);
    }catch(SQLException se){
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.