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