/examples/ioc/DependencyInjectionSample/CarLibrary/IVehicle.cs
http://github.com/philiplaureano/LinFu · C# · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · 135cbe719f7fbdf0c9542555c7f5c162 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CarLibrary
- {
- public interface IVehicle
- {
- void Move();
- void Park();
- IPerson Driver { get; set; }
- IEngine Engine { get; set; }
- }
- }