Skip to content

Commit f62288f

Browse files
committed
fix #266
1 parent 43c06c3 commit f62288f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/FikaAmazonAPI/Services/FulFillmentOutboundService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ public async Task<bool> UpdateFulfillmentOrderAsync(string sellerFulfillmentOrde
120120
return true;
121121
}
122122

123-
public bool UpdateFulfillmentOrder(string sellerFulfillmentOrderId) =>
124-
Task.Run(() => UpdateFulfillmentOrderAsync(sellerFulfillmentOrderId)).ConfigureAwait(false).GetAwaiter().GetResult();
125-
public async Task<bool> UpdateFulfillmentOrderAsync(string sellerFulfillmentOrderId)
123+
public bool CancelFulfillmentOrder(string sellerFulfillmentOrderId) =>
124+
Task.Run(() => CancelFulfillmentOrderAsync(sellerFulfillmentOrderId)).ConfigureAwait(false).GetAwaiter().GetResult();
125+
public async Task<bool> CancelFulfillmentOrderAsync(string sellerFulfillmentOrderId)
126126
{
127127
await CreateAuthorizedRequestAsync(FulFillmentOutboundApiUrls.CancelFulfillmentOrder(sellerFulfillmentOrderId), RestSharp.Method.PUT);
128128

0 commit comments

Comments
 (0)