/examples/ioc/PropertyInjectionSample/CarLibrary2/IVehicle.cs

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

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