Пример #1
0
 public bool AddNote(int orderID, NoteInfo note)
 {
     assertConnected();
     try
     {
         if (wsClient.AddNote(accessToken(), orderID, note) == true)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception ex)
     {
         throw TranslateException(ex);
     }
 }