Created
April 24, 2021 00:37
-
-
Save ahmetozlu/bd84bf2ec9fc19aeb5dc1dd129ad6fba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // mapping for orders to have an list for the orders | |
| mapping (uint => Order) orders; | |
| // mapping for invoices to have an list for the invoices | |
| mapping (uint => Invoice) invoices; | |
| // index value of the orders | |
| uint orderseq; | |
| // index value of the invoices | |
| uint invoiceseq; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment