/// <summary>
 /// Method that calls the form to list the Securities
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void listSecurities_Click(object sender, EventArgs e)
 {
     ListForm list = new ListForm(controller,"s");
     list.Show();
 }
 /// <summary>
 /// Method to launch form that lists the models
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void listModels_Click(object sender, EventArgs e)
 {
     ListForm list = new ListForm(controller,"M");
     list.Show();
 }