Exemplo n.º 1
0
 public int[] GetOrderIDs(bool scheduledOnly, bool activeOnly, int maxOrders)
 {
     assertConnected();
     try
     {
         return(wsClient.GetOrderIDs(accessToken(), scheduledOnly, activeOnly, maxOrders));
     }
     catch (Exception ex)
     {
         throw TranslateException(ex);
     }
 }