public void TestAddEmployeeToPayrollofDataBaseHandlerClassPassListOfEmployeesAndReceiveTheNumberOfRowsAffected()
        {
            DateTime startDateTime = DateTime.Now;
            int      rows          = DataBaseHandler.AddEmployeeToPayroll(employeeDetails);
            DateTime endDateTime   = DateTime.Now;

            Console.WriteLine("The time taken for execution is: " + (endDateTime - startDateTime));
            Assert.AreEqual(3, rows);
        }