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