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