-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModel.cs
37 lines (33 loc) · 939 Bytes
/
Model.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace GroceryExpenseTracker
{
namespace Model
{
public class Product
{
public string Name;
public UInt32 QTY;
public float UnitPrice;
}
public class PurchaseList
{
public string MarketName;
public DateTime Date = DateTime.Now;
public List<Product> ProductList = new List<Product>();
}
public class PurchaseHistory
{
public List<PurchaseList> History = new List<PurchaseList>();
public void Save(string file)
{
File.WriteAllText(file, JsonConvert.SerializeObject(this, Formatting.None));
}
}
}
}