Advertisement
Guest User

Untitled

a guest
Apr 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. interface DatabaseInterface {
  2.     public Boolean connect();
  3.        
  4.     public List<Product> getAllProducts();
  5.    
  6.     public getProduct(String barCode) throws Exception;
  7.    
  8.     public void addProducts(List<Product> products);
  9.    
  10.     public void addProduct(Product product);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement