/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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CarLibrary3
  5. {
  6. public interface IPerson
  7. {
  8. string Name { get; set; }
  9. int Age { get; set; }
  10. }
  11. }