//
        // GET: /Consultation/

        public ActionResult ReviewsApproval()
        {
            if (Session["LogedUserID"] != null)
            {
                try
                {
                    var doc = db.SP_SelectConsultation();
                    return(View(doc));
                }
                catch (Exception ex)
                {
                    return(View());
                }
            }
            else
            {
                return(RedirectToAction("AdminLogin", "Account"));
            }
        }