12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace StoreServer
- {
- class RootDataOfProductInOrder
- {
- public RootDataOfProductInStore ProductInStore { get; set; }
- public int AmountProduct { get; set; }
- public decimal Cost {
- get
- {
- return ProductInStore.PriceOfOne * AmountProduct;
- }
- }
- }
- }
|