private void btnSave_Click(object sender, EventArgs e)
 {
     CurrentAuditor.GeneralInformation = txtGeneralInformation.Text;
     CurrentAuditor.RetirementBusiness = txtRetirementBusiness.Text;
     CurrentAuditor.Security           = txtSecurity.Text;
     CurrentAuditor.ValueBalance       = txtValueBalance.Text;
     CurrentAuditor.SaveRecordToDatabase(frmMain_Parent.CurrentUser.UserId);
     this.Close();
 }
 private void btnSave_Click(object sender, EventArgs e)
 {
     CurrentAuditor.Notes = txtNotes.Text;
     CurrentAuditor.SaveRecordToDatabase(frmMain_Parent.CurrentUser.UserId);
     //this.Close();
 }