/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

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