Acme.Northwind.EFDAL.Entity.OrderDetailPrimaryKey.OrderDetailPrimaryKey C# (CSharp) Method

OrderDetailPrimaryKey() public method

The constructor for this object which takes the fields that comprise the primary key for the 'OrderDetail' table.
public OrderDetailPrimaryKey ( int orderID, int productID ) : System
orderID int
productID int
return System
		public OrderDetailPrimaryKey(int orderID, int productID)
		{
			_orderID = orderID;
			_productID = productID;
		}