public void GivenQuestionIdAndOptionId_WhenItIsValid_ThenReturnCorrespondingMonitorId2()
        {
            OptionsRepository m = new OptionsRepository();
            int Actual          = 10;
            int expected        = m.datafetch2(11, 3);

            Assert.AreEqual(Actual, expected);
        }
        public void GivenQuestionIdAndOptionId_WhenItIsNotValid_ThenShouldNotReturnCorrespondingMonitorId()
        {
            OptionsRepository m = new OptionsRepository();
            int Actual          = 1;
            int expected        = m.datafetch2(12, 5);

            Assert.AreNotEqual(Actual, expected);
        }