StoreProduct.StoreProduct C# (CSharp) Метод

StoreProduct() публичный Метод

public StoreProduct ( string title, string description, string price, string productId ) : System.Collections
title string
description string
price string
productId string
Результат System.Collections
    public StoreProduct(string title, string description, string price, string productId)
    {
        _title       = title;
        _description = description;
        _price       = price;
        _productId   = productId;
    }
StoreProduct