public static void RunPrediction() { List <Person> population = new List <Person>(); List <double> coefficient = new List <double>(); FileReader.CoefficientRead(coefficient); FileReader.ReadFile(population, 10); Prediction.CalcPrediction(coefficient, population, _selectedPerson); }