コード例 #1
0
ファイル: WCObject.cs プロジェクト: acdsynergie/EcomCockpit
 public async Task <string> UpdateOrderNote(int orderid, int noteid, Order_Note n, Dictionary <string, string> parms = null)
 {
     return(await API.SendHttpClientRequest("orders/" + orderid.ToString() + "/notes/" + noteid.ToString(), RequestMethod.PUT, n, parms).ConfigureAwait(false));
 }
コード例 #2
0
 public async Task <string> PostOrderNote(int orderid, Order_Note n, Dictionary <string, string> parms = null)
 {
     return(await API.SendHttpClientRequest("orders/" + orderid.ToString() + "/notes", RequestMethod.POST, n, parms));
 }