using System; using System.Collections.Generic; namespace Org.TechA.Data.Dsl.Domain { public class Order : IDomainEntity { public Customer CustomerReference { get; set; } public int? EmployeeID { get; set; } public decimal? Freight { get; set; } public IEnumerable Order_Details { get; set; } public DateTime? OrderDate { get; set; } public int OrderID { get; set; } public DateTime? RequiredDate { get; set; } public string ShipAddress { get; set; } public string ShipCity { get; set; } public string ShipCountry { get; set; } public string ShipName { get; set; } public DateTime? ShippedDate { get; set; } public string ShipPostalCode { get; set; } public string ShipRegion { get; set; } public int? ShipVia { get; set; } } }