/examples/ioc/CarLibrary4/Person.cs
http://github.com/philiplaureano/LinFu · C# · 43 lines · 38 code · 5 blank · 0 comment · 0 complexity · a29a9f374e1b3e8bfb5d8fa424e4c718 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Text;
- using LinFu.IoC;
- using LinFu.IoC.Configuration;
- using LinFu.IoC.Interfaces;
- namespace CarLibrary3
- {
- public class Person : IPerson
- {
- private string _name;
- private int _age;
- #region IPerson Members
- public string Name
- {
- get
- {
- return _name;
- }
- set
- {
- _name = value;
- }
- }
- public int Age
- {
- get
- {
- return _age;
- }
- set
- {
- _age = value;
- }
- }
- #endregion
- }
- }