Guest User

Untitled

a guest
Jan 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class Car
  2. {
  3. public Car()
  4. {
  5. Engine = new FourCylinderEngine();
  6. }
  7.  
  8. private FourCylinderEngine Engine { get; set; }
  9.  
  10. public void Start()
  11. {
  12. Engine.Start();
  13. }
  14. }
Add Comment
Please, Sign In to add comment