/examples/ioc/CarLibrary4/IVehicle.cs

http://github.com/philiplaureano/LinFu · C# · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · 9f66639e9913a444cc53e1307082ee36 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CarLibrary3
  5. {
  6. public interface IVehicle
  7. {
  8. void Move();
  9. void Park();
  10. IPerson Driver { get; set; }
  11. IEngine Engine { get; set; }
  12. }
  13. }