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

ProductPrimaryKey() public method

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