private
sqlInsertCommand1.Parameters.Add("@addressadd",SqlDbType.Char,255,"Address").Value = comboBoxDepartment.Text;sqlInsertCommand1.Parameters.Add("@nameadd",SqlDbType.Char,255,"FullName").Value = txtName.Text;sqlInsertCommand1.Parameters.Add("@directlineadd",SqlDbType.Char,255,"DirectLine").Value = txtDirectLine.Text;sqlInsertCommand1.Parameters.Add("@mobileadd",SqlDbType.Char,255,"Mobile").Value = txtMobile.Text;
connAdd.Open();