public void TestGetEmployee()
        {
            //Arrange
            int    id   = 2;
            string name = "student2";
            //Act
            Student actual = StudentCRUD.GetStudent(id);

            //Assert
            Assert.That(actual, Has.Property("Name").EqualTo(name));
        }