Model.ProductInfo.ProductInfo C# (CSharp) Method

ProductInfo() public method

public ProductInfo ( string pName, string pType ) : System
pName string
pType string
return System
        public ProductInfo(string pName, string pType)
        {
            name = pName;
            type = pType;
            GetSizeCost(pType);            
        }
        public void GetSizeCost(string pType)