StoreProduct.StoreProduct C# (CSharp) Méthode

StoreProduct() public méthode

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