Skip to content

Instantly share code, notes, and snippets.

@Jtorrecilla
Created February 14, 2016 19:38
Show Gist options
  • Select an option

  • Save Jtorrecilla/1676c35015360c056ec6 to your computer and use it in GitHub Desktop.

Select an option

Save Jtorrecilla/1676c35015360c056ec6 to your computer and use it in GitHub Desktop.
public class Order
{
public int Id { get; set; }
public int CustomerId { get; set; }
public DateTime OrderDate { get; set; }
public Customer Customer { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment