// Protest on Dr.Smell
 public void UpdateTextBoxInspectors(int textBoxIndex, string text, int maxTextLength)
 {
     _creditCardPaymentModel.UpdateTextBoxInspectors(textBoxIndex, text, maxTextLength);
     UpdateSubmitButton();
 }
        /// <summary>
        /// Update member variables of all TextBoxInspectors of the textbox at textBoxIndex.
        /// </summary>
        public void UpdateTextBoxInspectors(int textBoxIndex, string text, int maxTextLength)
        {
            Action updateTextBoxInspectorsFunction = () => _creditCardPaymentModel.UpdateTextBoxInspectors(textBoxIndex, text, maxTextLength);

            UpdateControlInspectors(updateTextBoxInspectorsFunction);
        }