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