コード例 #1
0
 public Int32 UpdatePuzzle(Puzzle puzzle)
 {
     _admin = new PuzzleEventAdminService.PuzzleEventAdminServiceClient();
     try
     {
         int rs = _admin.UpdatePuzzle(puzzle);
         _admin.Close();
         return(rs);
     }
     catch (Exception ex)
     {
         _admin.CloseCatch(ex, "UpdatePuzzle 更新宝箱礼包信息失败");
         return(0);
     }
 }