I am making what is basically an electronic checkbook app using Windows Forms.
I've created three new classes: Accounts, Transactions & Categories. I figured out HOW to use IEnumberable & LINQ statements to create a query that will search through all the transactions. And I also successfully bound that query to a DataGrid. But I know I didn't create these in the right "scope".
So now I'm trying to figure out the best place "scopewise" to create my List <T> objects. I also need to make them serializable so that I can write them out to a binary file.
TIA!
I've created three new classes: Accounts, Transactions & Categories. I figured out HOW to use IEnumberable & LINQ statements to create a query that will search through all the transactions. And I also successfully bound that query to a DataGrid. But I know I didn't create these in the right "scope".
So now I'm trying to figure out the best place "scopewise" to create my List <T> objects. I also need to make them serializable so that I can write them out to a binary file.
TIA!