Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created May 5, 2020 22:06
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 ankitvijay/fb9101904d4c027973fb84d0da44854a to your computer and use it in GitHub Desktop.
Save ankitvijay/fb9101904d4c027973fb84d0da44854a to your computer and use it in GitHub Desktop.
DDD Example - Version 1
public class OrderItem
{
public OrderItem(int orderId, string orderName)
{
OrderId = orderId;
OrderName = orderName;
}
public int OrderId { get; private set; }
public string OrderName { get; private set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment