Examples of ajouterDefi()


Examples of business.Utilisateur.ajouterDefi()

      // Nouveau défi.
      if(action.equals("ajouter")) {
        int id_cible = Integer.valueOf(request.getParameter("id_cible"));
        int id_pariDemandeur = Integer.valueOf(request.getParameter("id_pari"));
       
        if(utilisateur.ajouterDefi(id_cible, id_pariDemandeur))
          out.print("{}");
        else
          response.setStatus(599);
      }
      // Accepter défi.
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.