public async Task <ActionResult> CompanyQAList(string expertType, string curPage = null)
        {
            ViewBag.LeftMenu = Global.ExpertService;

            string questionId = Session[Global.LoginID].ToString();


            //수신함 조회
            int pagingSize = int.Parse(ConfigurationManager.AppSettings["PagingSize"]);

            var pagedListscQas = await _scQaService.GetPagedListReceiveQAsByQuestionId(int.Parse(curPage ?? "1"), pagingSize, questionId, expertType);

            var qaList =
                Mapper.Map <List <QaRequstViewModels> >(pagedListscQas);

            //전문가 타입 뷰로 전달
            ViewBag.ExpertType = expertType;

            return(View(new StaticPagedList <QaRequstViewModels>(qaList, int.Parse(curPage ?? "1"), pagingSize, pagedListscQas.TotalItemCount)));

            //var scQas = await _scQaService.GetReceiveQAsByQuestionId(questionId, expertType);

            //var qaList =
            //    Mapper.Map<List<QaRequstViewModels>>(scQas);

            //int pagingSize = int.Parse(ConfigurationManager.AppSettings["PagingSize"]);

            ////전문가 타입 뷰로 전달
            //ViewBag.ExpertType = expertType;

            //return View(new StaticPagedList<QaRequstViewModels>(qaList.ToPagedList(int.Parse(curPage ?? "1"), pagingSize), int.Parse(curPage ?? "1"), pagingSize, qaList.Count));
        }