예제 #1
0
 public NoteInfo[] GetNotes(int orderID)
 {
     assertConnected();
     try
     {
         string noteListXml = wsClient.GetNotes(accessToken(), orderID);
         return(NoteInfo.ParseNotesXml(noteListXml));
     }
     catch (Exception ex)
     {
         throw TranslateException(ex);
     }
 }