public async Task <IActionResult> Index(FaqGroupSearchViewModel searchModel)
        {
            var model = await _faqGroupRepository.LoadAsyncCount(
                this.CurrentPage,
                this.PageSize,
                searchModel);

            this.TotalNumber = model.Item1;

            ViewBag.SearchModel = searchModel;

            return(View(model.Item2));
        }