public void When_getting_a_list_of_webinars_it_should_not_throw()
        {
            // Arrange
            var service = new WebinarService();

            // Act
            Action action = () => service.GetWebinars();

            // Assert
            action.ShouldNotThrow();
        }