Exemplo n.º 1
0
 private void WriteState()
 {
     JsonFileSystem.WriteStores(_stores, _filelocation);
 }
Exemplo n.º 2
0
 private void WriteState()
 {
     JsonFileSystem.WriteOrder(_orders, _filelocation);
 }
Exemplo n.º 3
0
 private List <Store> ReadState()
 {
     return(JsonFileSystem.ReadStores(_filelocation));
 }
Exemplo n.º 4
0
 private List <Order> ReadState()
 {
     return(JsonFileSystem.ReadOrder(_filelocation));
 }
Exemplo n.º 5
0
 private void WriteState()
 {
     JsonFileSystem.WriteBuyers(_buyers, _filelocation);
 }
Exemplo n.º 6
0
 private List <Buyer> ReadState()
 {
     return(JsonFileSystem.ReadBuyers(_filelocation));
 }
Exemplo n.º 7
0
 private void WriteState()
 {
     JsonFileSystem.WriteProduct(_products, _filelocation);
 }
Exemplo n.º 8
0
 private List <Product> ReadState()
 {
     return(JsonFileSystem.ReadProduct(_filelocation));
 }