/examples/ioc/CarLibrary4/IVehicle.cs
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; }
- }
- }