コード例 #1
0
ファイル: RiskController.cs プロジェクト: avgrishin/ob
 public ActionResult delLimitList(List <tLimitList> data)
 {
     try
     {
         return(new JsonnResult {
             Data = new { success = true, data = _riskRepository.DelLimitList(data) }
         });
     }
     catch (Exception ex)
     {
         return(new JsonnResult {
             Data = new { success = false, message = ex.Message }
         });
     }
 }