コード例 #1
0
ファイル: StudentController.cs プロジェクト: lament0/RayPI
 public JsonResult Dels(long[] ids = null)
 {
     if (ids.Length == 0)
     {
         throw new ArgumentNullException();
     }
     return(Json(_studentBusiness.Dels(ids)));
 }