Package com.ateam.webstore.dao

Examples of com.ateam.webstore.dao.ReviewDAO.save()


  @Override
  public Review store(Review review) {
   
    ReviewDAO repository = new ReviewDAO();
    return repository.save(review);
  }

  @Override
  public void remove(Review review) {
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.