/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

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