示例#1
0
        public async Task <PaginatedResponse <Achat> > GetPaginatedAchats(PagingParams pagination)
        {
            try
            {
                var result = await _stockApi.GetPaginatedAchats(pagination);

                return(result.Content);
            }
            catch (ApiException e)
            {
                throw new StockApiException(e.Message);
            }
            catch (Exception e)
            {
                _logger.LogError(e.Message);
                throw;
            }
        }