/// <inheritdoc />
 public async Task <OrdersResult> GetAllOrdersInStatusInProgress() =>
 await _restClient.GetAsync <OrdersResult>("orders?statuses=IN_PROGRESS");
 public void GenericRestClient_GetAsync_throw_exception_when_Configure_method_was_not_called_before()
 {
     //Act && Assert
     Assert.ThrowsAsync <InvalidOperationException>(async() =>
                                                    await _sut.GetAsync <string>("http://someUrl.com"));
 }