Package com.ateam.webstore.dao

Examples of com.ateam.webstore.dao.ProductsInWishListDAO


    RepositoryService<ProductsInWishList> {

  @Override
  public ProductsInWishList store(ProductsInWishList productsInWishList) {
   
    ProductsInWishListDAO repository = new ProductsInWishListDAO();
    return repository.save(productsInWishList);
  }
View Full Code Here


  }

  @Override
  public void remove(ProductsInWishList productsInWishList) {
   
    ProductsInWishListDAO repository = new ProductsInWishListDAO();
    repository.delete(productsInWishList);
   
  }
View Full Code Here

  }

  @Override
  public Collection<ProductsInWishList> getAll() {

    ProductsInWishListDAO repository = new ProductsInWishListDAO();
    return repository.getAll();
  }
View Full Code Here

    return repository.getAll();
  }

  @Override
  public ProductsInWishList getById(Serializable id) {
    ProductsInWishListDAO repository = new ProductsInWishListDAO();
    return repository.get(id);
  }
View Full Code Here

TOP

Related Classes of com.ateam.webstore.dao.ProductsInWishListDAO

Copyright © 2018 www.massapicom. 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.