Guest User

REPOSITORY

a guest
May 21st, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. public interface ProductRepository extends CrudRepository<Product, Long> {
  2.     Product findByName(String name);
  3.     List<Product> getAllProducts();
  4.     Product getProductById(String productId);
  5.     void addProduct(Product product);
  6. }
Add Comment
Please, Sign In to add comment