public void DayIndexForMondayStartTestWithMonday()
        {
            //Creating a new date for Monday, April 29th, 2019
            DateTime testDate = new DateTime(2019, 4, 29);

            //Monday should be represented by a 0
            int expected = 0;

            Assert.AreEqual(expected, CalendarController.DayIndexForMondayWeekStart(testDate.DayOfWeek));
        }
        public void DayIndexForMondayStartTestWithSunday()
        {
            //Creating a new date for Sunday, May 5th, 2019
            DateTime testDate = new DateTime(2019, 5, 5);

            //Sunday should be represented by a 6
            int expected = 6;

            Assert.AreEqual(expected, CalendarController.DayIndexForMondayWeekStart(testDate.DayOfWeek));
        }