Package com.ateam.webstore.dao

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


  @Override
  public Role store(Role role) {
   
    RoleDAO repository = new RoleDAO();
    return repository.save(role);
  }

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