public void GivenThePrioritizedTimeseries(Table table)
        {
            IEnumerable <Guid> prioritized = table.Rows.Select(row => Guid.Parse(row["prioritized"]));
            var prioritizer = new PrioritizerConfiguration(prioritized);

            _container.RegisterInstanceAs <PrioritizerConfiguration>(prioritizer);
        }
        public void GivenAConfigFileWithThefollowingMapping(Table table)
        {
            IEnumerable <Guid> prioritized = table.Rows.Select(row => Guid.Parse(row["prioritized"]));
            var prioritizer = new PrioritizerConfiguration(prioritized);
            var file        = JsonConvert.SerializeObject(prioritizer);

            _appContext.AddConfigurationFile("data/configuration.json", file);
        }