/// <summary>
 /// This method invokes a methods for adding report.
 /// </summary>
 public void SaveExecute()
 {
     try
     {
         reports.AddReport(report);
         addReportView.Close();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }