コード例 #1
0
 public FansStaticInfoEntity GetFansStaticInfo(int User_ID)
 {
     try
     {
         return(dM_UserService.GetFansStaticInfo(User_ID));
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }