using System; using System.Collections.Generic; using System.Text; namespace Tango.BLL.Objects { public class Organization : ObjectBase { public string ID { get; set; } public string Name { get; set; } public Address Address { get; set; } public Contact Contact { get; set; } public Organization() { Address = new Address(); Contact = new Contact(); } } }