export class HtmlUtility{
  static showControlWhen(jQuerySelector, condition) {
    if (condition) {
      jQuerySelector.show();
    }
    else {
      jQuerySelector.hide();
    }
  }
}