コード例 #1
0
 public List <string> GetShareImage(int user_id, string appid)
 {
     try
     {
         return(dM_UserService.GetShareImage(user_id, appid));
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }