Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Product {
- private int id;
- private int stock;
- public Product(int id, int stock) {
- this.id = id;
- this.stock = stock;
- }
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public int getStock() {
- return stock;
- }
- public void setStock(int stock) {
- this.stock = stock;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement