namespace Db4OSeries { public class Person { public Person(string sirName, string firstName) : this(firstName, sirName,null ) { } public Person(string firstName, string sirName, Person boss) { FirstName = firstName; SirName = sirName; Boss = boss; } public string FirstName { get; set; } public string SirName { get; set; } public Person Boss { get; set; } } }