Beispiel #1
0
 /// <summary>
 /// Search Super Funds
 /// </summary>
 /// <remarks>
 /// Search for super funds based on a string, search by defaults to All
 /// </remarks>
 public Task <List <SuperProductEditModel> > SearchSuperFundsAsync(int businessId, SearchSuperFundsQueryModel request, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync <List <SuperProductEditModel> >($"/business/{businessId}/superfund/productsearch?term={request.Term}&searchBy={request.SearchBy}", Method.GET, cancellationToken));
 }
Beispiel #2
0
 /// <summary>
 /// Search Super Funds
 /// </summary>
 /// <remarks>
 /// Search for super funds based on a string, search by defaults to All
 /// </remarks>
 public List <SuperProductEditModel> SearchSuperFunds(int businessId, SearchSuperFundsQueryModel request)
 {
     return(ApiRequest <List <SuperProductEditModel> >($"/business/{businessId}/superfund/productsearch?term={request.Term}&searchBy={request.SearchBy}", Method.GET));
 }