コード例 #1
0
 public JsonResult FetchFacultiesOfDepartment(int deptId)
 {
     return(Json(_mapper.Map <IList <Faculty> >(_facultytService.FetchAllFacultiesOfDepartment(deptId)), JsonRequestBehavior.AllowGet));
 }