Advertisement
Guest User

Untitled

a guest
May 26th, 2015
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. public Booking (String n, String p){
  3. this.name =n;
  4. this.phone =p;
  5. }
  6.  
  7. public String getName(){
  8. return this.name;
  9. }
  10.  
  11. public String getPhone(){
  12. return this.phone;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement