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