Advertisement
AlexDanny

Customer Class Code

Dec 12th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. private class Customer{
  2. int requiredServeTime;
  3. int waitTime;
  4.  
  5. public Customer(int serviceTime){
  6. waitTime = 0;
  7. requiredServeTime = serviceTime;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement