CloverExamplePOS.POSItem.POSItem C# (CSharp) Метод

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

public POSItem ( string id, string name, long price, bool taxable = true, bool tippable = true ) : System
id string
name string
price long
taxable bool
tippable bool
Результат System
        public POSItem(string id, string name, long price, bool taxable = true, bool tippable = true)
        {
            ID = id;
            Name = name;
            Price = price;
            Taxable = taxable;
            Tippable = tippable;
        }
POSItem