You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

  1. using Microsoft.AspNetCore.Mvc;
  2. using Microsoft.Extensions.Logging;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace SignatureAPI.Controllers
  8. {
  9. [ApiController]
  10. [Route("[controller]")]
  11. public class WeatherForecastController : ControllerBase
  12. {
  13. private static readonly string[] Summaries = new[]
  14. {
  15. "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
  16. };
  17. private readonly ILogger<WeatherForecastController> _logger;
  18. public WeatherForecastController(ILogger<WeatherForecastController> logger)
  19. {
  20. _logger = logger;
  21. }
  22. [HttpGet]
  23. public IEnumerable<WeatherForecast> Get()
  24. {
  25. var rng = new Random();
  26. return Enumerable.Range(1, 5).Select(index => new WeatherForecast
  27. {
  28. Date = DateTime.Now.AddDays(index),
  29. TemperatureC = rng.Next(-20, 55),
  30. Summary = Summaries[rng.Next(Summaries.Length)]
  31. })
  32. .ToArray();
  33. }
  34. }
  35. }