protected void WhenReadingTheFlowFileAsASimpleDataSourceFile()
        {
            // flow files and data files are the same
            _dataFileRepo = new DataSourceLogRepo(_dataSourceDir);

            this._flowFileDb   = _flowFileRepo.Get(typeof(TestEntity1), "code");
            this._dataSourceDb = _dataFileRepo.Get(typeof(TestEntity1));
        }
        protected void AndGivenADataSourceLogExistsAndIsValidAndIncludingSpecificFileTypes()
        {
            // flow entity
            _flowEntity = FlowEntity.Create <TestEntity>();

            _repo = new DataSourceLogRepo(_logDir);
            _repo.Save(new DataFileLog(_flowEntity, "*.csv"));
        }