public ActionResult SaveDeveloperSkill(int?hdnCount, int hdnDeveloperSkill, int btnRadioScaleId, string description)
        {
            if (!IsTechincalSkill)
            {
                empReview.SaveDeveloperSkill(hdnDeveloperSkill, btnRadioScaleId, description, LoginUserId);
            }
            else
            {
                empReview.SaveTechnicalSkill(hdnDeveloperSkill, btnRadioScaleId, description, LoginUserId);
            }

            return(RedirectToAction("Index", new { hdnCount = hdnCount }));
        }