コード例 #1
0
 public ResultModel Delete(int id)
 {
     try
     {
         _returnBookBLL.DeleteReturnBook(id);
         return(new ResultModel(Code.OK, "thành công"));
     }
     catch (Exception)
     {
         return(new ResultModel(Code.SVERROR, "lỗi hệ thống"));
     }
 }