Esempio n. 1
0
 public static WeatherState ReduceFetchDataResultAction(WeatherState state, FetchDataResultAction action) =>
 new WeatherState(false, action.Forecasts);
Esempio n. 2
0
 public static WeatherState ReduceFetchDataAction(WeatherState state, FetchDataAction action) =>
 new WeatherState(true, null);