コード例 #1
0
        public JsonResult GetDesignationByDeptId(int deptId)
        {
            //deptBLL = new DepartmentBLL();
            var listDesig = empBll.GetDesignationByDeptId(deptId);

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