public IActionResult GetStoreNeighborhoods()
        {
            var neighborhoods = _filterRepository.GetDistinctStoreNeighborhoods();

            return(Ok(neighborhoods));
        }