public void TestGetStudentBySection()
        {
            //Arrange
            string section = "A";
            //Act
            List <Student> actualList = StudentCRUD.GetStudentBySection(section);

            //Assert
            Assert.That(actualList, Has.Count.EqualTo(2)
                        .And.All.Property("Section").EqualTo("A"));
        }