ClassProduct.cs 757 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WpfAppProduct
  7. {
  8. public partial class Product
  9. {
  10. public string Desc
  11. {
  12. get
  13. {
  14. return "Описание: " + ProductDescription;
  15. }
  16. }
  17. public string Price
  18. {
  19. get
  20. {
  21. return "Стоимость: " + String.Format("{0:N2}", ProductCost);
  22. }
  23. }
  24. //public string Discount
  25. //{
  26. // get
  27. // {
  28. // int disc = (int)ProductDiscount;
  29. // double NewCost = ;
  30. // return NewCost;
  31. // }
  32. //}
  33. }
  34. }