using System; using System.Collections.Generic; namespace Org.TechA.Data.Dsl.Domain { public class Customer : IDomainEntity { public string Address { get; set; } public string City { get; set; } public string CompanyName { get; set; } public string ContactName { get; set; } public string ContactTitle { get; set; } public string Country { get; set; } public string CustomerID { get; set; } public int? CustType { get; set; } public string Fax { get; set; } public IEnumerable Orders { get; set; } public string Phone { get; set; } public string PostalCode { get; set; } public string Region { get; set; } } }