Hipster74
Results
1
issues of
Hipster74
I have a method like this: ```csharp public async Task GetCustomerSubscribedSkuAsync(string customerId, string partnerId) { List customerSubscribedSku = new List(); try { var customerSubscribedSkusCollection = await partnerApiConnection.Customers.ById(customerId).SubscribedSkus.GetAsync(); if (customerSubscribedSkusCollection !=...