Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class Vacation
  2. {
  3. public Vacation(Bus bus)
  4. {
  5. Bus = bus ?? throw new ArgumentNullException("bus");
  6. }
  7.  
  8. public Bus Bus { get; }
  9.  
  10. public void PrepareVacation(Mechanic mechanic)
  11. {
  12. mechanic.PrepareVacation(Bus);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement