Guest User

Untitled

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