public async Task GetWithHasDataTest(int naceId, int tableId)
        {
            ActionResult <IEnumerable <RegionWithHasData> > response = await regionController.GetWithHasData(naceId, tableId);

            List <RegionWithHasData> regions = await this._databaseStore.getAllRegionsWithHasData(naceId, tableId);

            Assert.IsTrue(regions.SequenceEqual(response.Value));
        }