// Protest on Dr.Smell
 public void UpdateDropDownListInspectors(int dropDownListIndex, int selectedIndex)
 {
     _creditCardPaymentModel.UpdateDropDownListInspectors(dropDownListIndex, selectedIndex);
     UpdateSubmitButton();
 }
        /// <summary>
        /// Update member variable of all DropDownListInspectors of the drop-down list at dropDownListIndex.
        /// </summary>
        public void UpdateDropDownListInspectors(int dropDownListIndex, int selectedIndex)
        {
            Action updateDropDownListInspectorsFunction = () => _creditCardPaymentModel.UpdateDropDownListInspectors(dropDownListIndex, selectedIndex);

            UpdateControlInspectors(updateDropDownListInspectorsFunction);
        }