-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
38 lines (32 loc) · 1.2 KB
/
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
38
namespace DesignPatterns.Proxy;
public record Weather(Guid Id, DateTime DateTime, string CityCode, string CountyCode);
public abstract class WSWeatherForecastClient
{
public abstract List<Weather> WeathersByCountyCode(string countyCode);
}
public class WSWeatherForecast(string username, string password) : WSWeatherForecastClient
{
public override List<Weather> WeathersByCountyCode(string countyCode)
{
Console.WriteLine($"Connected with username: {username} password: {password}");
Console.WriteLine("Return of County of Weather");
return [new Weather(Guid.NewGuid(), DateTime.Now, "IST", "TURKEY")];
}
}
public class WSWeatherForecastClientProxy : WSWeatherForecastClient
{
private readonly WSWeatherForecast _weatherForecast = new("username", "password");
public override List<Weather> WeathersByCountyCode(string countyCode)
{
Console.WriteLine("Connecting...");
return _weatherForecast.WeathersByCountyCode(countyCode);
}
}
class App
{
public static void Main()
{
WSWeatherForecastClient clientProxy = new WSWeatherForecastClientProxy();
clientProxy.WeathersByCountyCode("90").ForEach(Console.WriteLine);
}
}