public async Task TestGetLocationsAsync()
        {
            var response = await controller.GetLocationsAsync(new PagingQueryBindingModel <LocationDTO>());

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