private void OnGetChildrenForCompleted2(
            PromptLevel getChildrenResponse,
            string promptName,
            Action <ISearchablePromptItemCollection> result)
        {
            var promptItems = _promptItemCollectionBuilder.CreateSearchablePromptItems(
                promptName,
                getChildrenResponse);

            result(promptItems);
        }