public void Test_Get_Found_Example()
        {
            int cantidad   = 2;
            var service    = WeatherForecastControllerFactory.GetMock();
            var controller = WeatherForecastControllerFactory.GetController(service);
            var result     = controller.Get();

            Assert.IsType <Entities.WeatherForecast.WeatherForecast>
                (result.FirstOrDefault());
            Assert.IsAssignableFrom <Entities.WeatherForecast.WeatherForecast>
                (result.FirstOrDefault());

            Assert.Equal(cantidad, result.Count());
        }