Esempio n. 1
0
 /// <summary>
 /// Retrieve an existing order
 /// </summary>
 /// <param name="orderCode">Code of the order to retrieve</param>
 /// <returns>Details of the existing order</returns>
 public TransferOrder FindOrder(string orderCode)
 {
     return(Http.Get <TransferOrder>(String.Format("{0}/orders/{1}", _baseUrl, orderCode)));
 }
 /// <summary>
 /// Retrieve an existing order
 /// </summary>
 /// <param name="orderCode">Code of the order to retrieve</param>
 /// <returns>Details of the existing order</returns>
 public async Task <OrderResponse> FindOrder(string orderCode)
 {
     return(await Http.Get <OrderResponse>(String.Format("{0}/orders/{1}", _baseUrl, orderCode)));
 }