public ActionResult Index()
        {
            var userId = User.Identity.GetUserId();
            var data   = _consultingRepository.GetAllMetByDoctorIdResult(userId);

            return(View(data));
        }