Skip to content

Instantly share code, notes, and snippets.

@GeradeDev
Created August 14, 2019 17:50
Show Gist options
  • Save GeradeDev/52776ccb016e8adec089beceb9f92bca to your computer and use it in GitHub Desktop.
Save GeradeDev/52776ccb016e8adec089beceb9f92bca to your computer and use it in GitHub Desktop.
public class Order
{
public Guid CustomerId { get; private set; }
public string OrderNo { get; private set; }
public DateTime DatePlaced { get; private set; }
public DateTime? DatePaid { get; private set; }
public decimal OrderTotal { get; private set; }
public decimal TotalVat { get; private set; }
public int? ShippingType { get; private set; }
public virtual ICollection<LineItem> LineItems { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment