/examples/ioc/ConstructorInjection/CarLibrary3/IPerson.cs
http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 672f350467cd6b72c037dd6704c01ffb MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CarLibrary3
- {
- public interface IPerson
- {
- string Name { get; set; }
- int Age { get; set; }
- }
- }