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