Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created June 28, 2016 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/84b82c7a682d9a522b8b156ac3bd5435 to your computer and use it in GitHub Desktop.
Save bjoerntx/84b82c7a682d9a522b8b156ac3bd5435 to your computer and use it in GitHub Desktop.
class SalesOrderHeader
{
public int RevisionNumber { get; set; }
public DateTime OrderDate { get; set; }
public SalesOrderDetail OrderDetail { get; set; }
}
class SalesOrderDetail
{
public List<Production_Product> Products { get; set; }
public Customer Customer { get; set; }
}
class Production_Product
{
public string Name { get; set; }
public string ProductNumber { get; set; }
}
class Customer
{
public int CustomerID { get; set; }
public string Name { get; set; }
public int SalesPersonID { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment