Package models

Examples of models.Interest.save()


    }
   
    public static void submitRename(Long interestId,String newNameInterest) {
        Interest interest = Interest.findById(interestId);
        interest.name = newNameInterest;
        interest.save();
        flash.success("l'intérêt a été renommé en '%s'", newNameInterest);
        edit();
    }

}
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.