Esempio n. 1
0
 private DataSet CallGetOnesCard(string pMemberId)
 {
     using (var cardClient = new CardServiceClient())
     {
         DataSet ds = null;
         try
         {
             ds = cardClient.GetOnesCard(pMemberId);
         }
         catch (SoapException ex)
         {
             HZLogger.Error(ex);
         }
         return ds;
     }
 }