/examples/ioc/ConstructorInjection/CarLibrary3/IVehicle.cs
C# | 14 lines | 13 code | 1 blank | 0 comment | 0 complexity | 9f66639e9913a444cc53e1307082ee36 MD5 | raw file
1using System; 2using System.Collections.Generic; 3using System.Text; 4 5namespace CarLibrary3 6{ 7 public interface IVehicle 8 { 9 void Move(); 10 void Park(); 11 IPerson Driver { get; set; } 12 IEngine Engine { get; set; } 13 } 14}