-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
37 lines (31 loc) · 971 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace DesignPatterns.Adapter;
record Weather(Guid Id, DateTime Date, float MaxTemp, float MinTemp, string CityName);
interface IWeatherAdapter
{
List<Weather> WeathersByCountyName(string countyName);
}
class WeatherForecast
{
public List<Weather> WeathersByCountyName(String countyName)
{
ArgumentException.ThrowIfNullOrEmpty(countyName);
return
[
new Weather(Guid.NewGuid(), DateTime.Now, 36.8f, 28.5f, "ISTANBUL"),
new Weather(Guid.NewGuid(), DateTime.Now, 27.8f, 21.5f, "ANKARA")
];
}
}
class WeatherForecastAdapter : IWeatherAdapter
{
public List<Weather> WeathersByCountyName(string countyName) =>
new WeatherForecast().WeathersByCountyName(countyName);
}
class App
{
public static void Main(string[] args)
{
IWeatherAdapter adapter = new WeatherForecastAdapter();
adapter.WeathersByCountyName("TURKEY").ForEach(Console.WriteLine);
}
}