/examples/ioc/DependencyInjectionSample/CarLibrary/IVehicle.cs

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

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