private static void OutputTelosHealth(TelosHealth telosCalculations) { Console.WriteLine("Phase One: " + telosCalculations.StartingHealth); Console.WriteLine("Phase Two: " + telosCalculations.PhaseTwoHealth()); Console.WriteLine("Phase Three: " + telosCalculations.PhaseThreeHealth()); Console.WriteLine("Phase Four: " + telosCalculations.PhaseFourStartingHealth); Console.WriteLine("Phase Four F1: " + telosCalculations.PhaseFourFontOneHealth()); Console.WriteLine("Phase Four F2: " + telosCalculations.PhaseFourFontTwoHealth()); Console.WriteLine("Phase Four F3: " + telosCalculations.PhaseFourFontThreeHealth()); }