Exemplo n.º 1
0
 /// <summary>
 /// Gets a list of your app's FulfillmentServices.
 /// </summary>
 /// <param name="scope">Set scope to all to retrieve all of the store's fulfillment services</param>
 /// <param name="cancellationToken">Cancellation Token</param>
 /// <returns>The list of fulfillment services matching the filter.</returns>
 public virtual async Task <IEnumerable <FulfillmentServiceEntity> > ListAsync(FulfillmentServiceListFilter filter = null, CancellationToken cancellationToken = default)
 {
     return(await ExecuteGetAsync <List <FulfillmentServiceEntity> >("fulfillment_services.json", "fulfillment_services", filter, cancellationToken));
 }
 /// <summary>
 /// Gets a list of your app's FulfillmentServices.
 /// </summary>
 /// <param name="scope">Set scope to all to retrieve all of the store's fulfillment services</param>
 /// <returns>The list of fulfillment services matching the filter.</returns>
 public virtual async Task <IEnumerable <FulfillmentServiceEntity> > ListAsync(FulfillmentServiceListFilter filter = null)
 {
     return(await ExecuteGetAsync <List <FulfillmentServiceEntity> >("fulfillment_services.json", "fulfillment_services", filter));
 }