public ActionResult FindUserId([Bind(Include = "SecurityQuestion,SecurityQueAnswer,Contact,Email")] Employee empModel)
        {
            EmployeeBlLayer.EmployeeLogic empLogic = new EmployeeBlLayer.EmployeeLogic();
            var userId = empLogic.GetFacultyId(empModel);

            if (userId.ToString().Length == 6)
            {
                TempData["status"] = "success";
                TempData["UserId"] = userId;
                return(View());
            }
            else
            {
                TempData["status"] = "failed";
                return(View());
            }
        }