public void TestingValidateSeason_SeasonalEmployee_Exception()
       {
           bool status = false;

           string[] testData = new string[6] {
                "qwer",
                "drfdgf",
                "246 454 284",
                "1997/3/14",
                "dfser",
                "45.34"
            };



           SeasonalEmployee testEmployee = new SeasonalEmployee();
           status = testEmployee.ValidateSeason("Wisdfnter");
           Assert.AreEqual(false, status);
       }