Many of the Learning Units give an example, For example, see "Composing WinForms with User Controls".
Here is the code that saves the changes to the DB.
private void mSaveAllChangesToolStripMenuItem_Click(object sender, EventArgs e) {
this.Validate();
_savingService.SaveAll();
}