From 5f5ac2c4ce62370257a26c5f15dbef577f4bc1c7 Mon Sep 17 00:00:00 2001 From: Kamal Wickramanayake Date: Sun, 22 Mar 2026 21:31:29 +0530 Subject: Deleted oop/10-point-of-sale since 11-point-of-sale has been added --- .../src/lk/ac/pdn/ceit/pos/entities/Item.java | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 oop/10-point-of-sale/src/lk/ac/pdn/ceit/pos/entities/Item.java (limited to 'oop/10-point-of-sale/src/lk/ac/pdn/ceit/pos/entities/Item.java') diff --git a/oop/10-point-of-sale/src/lk/ac/pdn/ceit/pos/entities/Item.java b/oop/10-point-of-sale/src/lk/ac/pdn/ceit/pos/entities/Item.java deleted file mode 100644 index 47b8e32..0000000 --- a/oop/10-point-of-sale/src/lk/ac/pdn/ceit/pos/entities/Item.java +++ /dev/null @@ -1,34 +0,0 @@ -package lk.ac.pdn.ceit.pos.entities; - -public class Item { - private String name; - private String id; - private double unitPrice; - - public Item(String name, String id, double unitPrice) { - this.name = name; - this.id = id; - this.unitPrice = unitPrice; - } - - public String getName() { - return name; - } - public void setName(String name) { - this.name = name; - } - public String getId() { - return id; - } - public void setId(String id) { - this.id = id; - } - public double getUnitPrice() { - return unitPrice; - } - public void setUnitPrice(double unitPrice) { - this.unitPrice = unitPrice; - } - - -} -- cgit v1.2.3