You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
605 B
21 lines
605 B
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;
|
|
}
|
|
}
|
|
}
|
|
|