/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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CarLibrary3
  5. {
  6. public interface IEngine
  7. {
  8. void Start();
  9. void Stop();
  10. }
  11. }