123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WpfApp1
- {
- partial class Books
- {
- private dynamic countStock;
- public dynamic Stock
- {
- get { return countStock; }
- set { countStock = value; }
- }
- private dynamic countStore;
- public dynamic Store
- {
- get { return countStore; }
- set { countStore = value; }
- }
- private string author;
- public string nameAuthor
- {
- get { return author; }
- set { author = value; }
- }
- private string genre;
- public string tittleGenre
- {
- get { return genre; }
- set { genre = value; }
- }
- private string myVar;
- public string allDescription
- {
- get { return myVar; }
- set { myVar = value; }
- }
- public int CountInBasket { get; set; } = 0;
- public string Visible { get; set; }
- public string Visible2 { get; set; }
- public decimal TotalPriseOrder { get; set; } = 0;
- public decimal TotalPriseOrderWithSale { get; set; } = 0;
- public string newDecoration { get; set; } = "None";
- }
- }
|