Sage.Integration.Northwind.Adapter.Services.CommodityIdentity.CommodityIdentity C# (CSharp) Method

CommodityIdentity() public method

public CommodityIdentity ( string productId ) : System
productId string
return System
        public CommodityIdentity(string productId)
        {
            if (string.IsNullOrEmpty(productId))
                throw new ArgumentException("Parameter 'commodityId' must not be emty or null.", "commodityId");

            _commodityId = productId;
        }

Same methods

CommodityIdentity::CommodityIdentity ( ) : System