private void button5_Click(object sender, EventArgs e)
 {
     MessageBox.Show("some less important button was clicked ... \nnow calling the same method that's called from form1's important button");
     model.someImportantMethod();
 }
 private void button5_Click(object sender, EventArgs e)
 {
     model.someImportantMethod();
 }