Package com.ateam.webstore.dao

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


  @Override
  public AcceptedCards store(AcceptedCards acceptedCards) {
   
    AcceptedCardsDAO repository = new AcceptedCardsDAO();
    return repository.save(acceptedCards);
   
  }

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