public void CanReadMapped()
        {
            Assert.DoesNotThrow(() =>
            {
                IDataOperations testOperations = CreateOperationsInterface();
                Student student = testOperations.ReadMapped(id: 69);

                Assert.IsNotNull(student, "The Student returned must not be null");
            },
                                "The mapped read operation must be successful");
        }