/examples/ioc/ConstructorInjection/CarLibrary3/IEngine.cs
http://github.com/philiplaureano/LinFu · C# · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · 66711ae7f3d1675ae6b63d514d1ba3c5 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CarLibrary3
- {
- public interface IEngine
- {
- void Start();
- void Stop();
- }
- }