public JsonResult GetTeacherById(int id)
        {
            var lst = dao.GetTeacherById(id);

            return(Json(lst, JsonRequestBehavior.AllowGet));
        }