/examples/ioc/ConstructorInjection/CarLibrary3/IEngine.cs
C# | 13 lines | 11 code | 2 blank | 0 comment | 0 complexity | 66711ae7f3d1675ae6b63d514d1ba3c5 MD5 | raw file
1using System; 2using System.Collections.Generic; 3using System.Text; 4 5namespace CarLibrary3 6{ 7 public interface IEngine 8 { 9 void Start(); 10 void Stop(); 11 } 12 13}