using BiskLog_Point_Of_Sale.Properties; namespace Point_Of_Sale_Managment { public class ReceiptObject { public string item { get; set; } public decimal cost { get; set; } public int quantity { get; set; } public decimal total { get; set; } public string currency { get; set; } public ReceiptObject(string product,decimal price,int qty,decimal tot) { item = product; currency = Settings.Default.currrencyCode + " "; cost = price; quantity = qty; total = tot; } } }