Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public abstract class Restaurant
  2. {
  3.  
  4. public void Name()
  5. {
  6. }
  7.  
  8. public abstract void totalPrice();
  9. public abstract void menueItems();
  10. public abstract void nameLocation();
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement