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"; } }