Skip to content

Instantly share code, notes, and snippets.

@RemiBou
Created September 10, 2012 12:27
Show Gist options
  • Save RemiBou/3690647 to your computer and use it in GitHub Desktop.
Save RemiBou/3690647 to your computer and use it in GitHub Desktop.
Remi DDD : sample entities
public class Product
{
public string Name { get; set; }
public int Id { get; set; }
public decimal Price { get; set; }
}
public class Order
{
public int Id { get; set; }
public int ProductId { get; set; }
public decimal Price { get; set; }
public int CustomerId { get; set; }
public string Comment { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment