public static void Main(string[] args)
        {
            Console.ForegroundColor = ConsoleColor.White;
            //Salary Object
            Salary s1 = new Salary();

            //To display the weeklySalary
            Console.WriteLine(DisplaySalary);
            //2 Blank Spaces
            Console.WriteLine();
            Console.WriteLine();
            //The Wages Object
            Wages w1 = new Wages();

            //Prompting the user to enter in the hours worked
            Console.WriteLine("Enter the number of hours worked: ");
            int numhours = int.Parse(Console.ReadLine());

            Console.WriteLine(WagesDisplayMeth());
            //Uses the display wages method to display the weekly wages
            Console.WriteLine(DisplayWages);
        }