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