WeatherForecastLogic.cs
Home
/
Src /
WebFileServ.Model.BLL /
WeatherForecastLogic.cs
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using WebFileServ.Model.Entities;
namespace WebFileServ.Model.BLL
{
public class WeatherForecastLogic
{
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
public IEnumerable<WeatherForecast> Get()
{
var rng = new Random();
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateTime.Now.AddDays(index),
TemperatureC = rng.Next(-20, 55),
Summary = Summaries[rng.Next(Summaries.Length)]
})
.ToArray();
}
}
}