/// <summary>
 /// Gets a list of up to 250 of the shop's customer saved searches.
 /// </summary>
 public virtual async Task <ListResult <Entities.CustomerSavedSearch> > ListAsync(CustomerSavedSearchListFilter filter, CancellationToken cancellationToken = default)
 {
     return(await ListAsync((ListFilter <Entities.CustomerSavedSearch>) filter, cancellationToken));
 }
Beispiel #2
0
 /// <summary>
 /// Gets a list of up to 250 of the shop's customer saved searches.
 /// </summary>
 public virtual async Task <ListResult <CustomerSavedSearch> > ListAsync(CustomerSavedSearchListFilter filter)
 {
     return(await ListAsync((ListFilter <CustomerSavedSearch>) filter));
 }