StoreProduct.StoreProduct C# (CSharp) Method

StoreProduct() public method

public StoreProduct ( string title, string description, string price, string productId ) : System.Collections
title string
description string
price string
productId string
return System.Collections
    public StoreProduct(string title, string description, string price, string productId)
    {
        _title       = title;
        _description = description;
        _price       = price;
        _productId   = productId;
    }
StoreProduct