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