I have a form that contains information about a client eg/Title, Name and their Address eg/Town, Country.
I have a class for each table that has a Save method to update the database.
I am thinking of having 2 bindingsources one for client and one for address. The controls will bind to the relevant bindingsource. When the user clicks the save button it will call EndEdit on each bindingsource and then for the CurrentItem call the Save method.
Does that sound a good approach?