private void VerificationsComboBox_SelectedIndexChanged(object sender, EventArgs e)
        {
            var selectedVerification = VerificationsComboBox.Text;

            var verification = ViewModelExtension.BuildVerificationDetails(selectedVerification);

            if (verification != null)
            {
                VerificationDescriptionLabelControl.Text = verification.Description;
            }
        }