public async Task TestGetAddressTypesAsync()
        {
            var response = await controller.GetAddressTypesAsync(new PagingQueryBindingModel <AddressTypeDTO>());

            Assert.IsInstanceOfType(response, typeof(OkNegotiatedContentResult <PagedQueryResults <AddressTypeDTO> >));
        }