public async Task <LibraryBookPagedListResponse> GetLibraryBooksPaged(PagedBase filterParameters, bool listLostAndStolen)
        {
            List <KeyValuePair <string, string> > kvpList = KeyValuePairUtil.KeyValuePairFromPagedBase(filterParameters);

            kvpList.Add(new KeyValuePair <string, string>("listLostAndStolen", listLostAndStolen.ToString()));
            return(await GetJsonDecodedContent <LibraryBookPagedListResponse, LibraryBookPageApiModel>(_apiUrl + APIConstants.Paged, kvpList.ToArray()).ConfigureAwait(false));
        }
        public async Task <LibraryBookStatusPagedListResponse> GetLibraryBookStatusPaged(PagedBase filterParameters)
        {
            List <KeyValuePair <string, string> > kvpList = KeyValuePairUtil.KeyValuePairFromPagedBase(filterParameters);

            return(await GetJsonDecodedContent <LibraryBookStatusPagedListResponse, LibraryBookStatusPageApiModel>(_apiUrl + APIConstants.Paged, kvpList.ToArray()).ConfigureAwait(false));
        }