namespace NorthwindModel {
public partial class NorthwindEntities {
public List<Customer> Customers {
// ... }

public List<Order> Orders {
// ... }
}

public partial class Customer {

public string CustomerID { get; set; }

public string CompanyName { get; set; }

public string ContactName { get; set; }

public string Country { get; set; }

public List<Order> Orders
{
get {
	// ...
}
}
}

public partial class Order {

public int OrderID { get; set; }

public DateTime? OrderDate { get; set; }

public DateTime? RequiredDate { get; set; }

public DateTime? ShippedDate { get; set; }

public Customer Customer {
get {
	// ...
}
set {
	// ...
}
}
}
}
