Commit f12d766c authored by Rohit Prasad's avatar Rohit Prasad

Add getter method to get customer id

parent d6e80a32
...@@ -3,4 +3,6 @@ public class Customer { ...@@ -3,4 +3,6 @@ public class Customer {
String id; String id;
Customer(String id) { this.id = id; } Customer(String id) { this.id = id; }
String getId() { return id; }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment