WeatherForecastLogic.cs

30 lines | 813 B Blame History Raw Download
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();
        }
    }
}