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