public void ReadCsvsFromDictionary()
        {
            var csvDataProvider = new CsvDataProvider(new CsvDataProviderConfiguration
            {
                FolderPath = "./CsvFiles"
            });
            var entityDataList = csvDataProvider.GetEntityDataList();

            Assert.IsNotNull(entityDataList);

            var entityDataComplex = entityDataList[0];

            MyAssert.AssertComplex(entityDataComplex);

            var entityDataSimple = entityDataList[1];

            MyAssert.AssertSimple(entityDataSimple);
        }