private void Initialize(out DateTime roundStartDate, out MlbAppService appService) { IConfigurationRoot configuration = InitializeConfiguration(); Round = 4; var roundStartDateFromConfig = $"round{Round}_start_date"; roundStartDate = Convert.ToDateTime(configuration[roundStartDateFromConfig]); appService = new MlbAppService(); }
private static void Initialize(out DateTime roundStartDate, out MlbAppService appService) { IConfigurationRoot configuration = InitializeConfiguration(); Console.WriteLine("Enter the Round #"); var roundNumber = Console.ReadLine(); var roundStartDateFromConfig = $"round{roundNumber}_start_date"; roundStartDate = Convert.ToDateTime(configuration[roundStartDateFromConfig]); appService = new MlbAppService(); }