public static ISpec <WeatherForecast> WithNotTemperature(this ISpec <WeatherForecast> spec, int temperature) =>
 spec.And(x => x.TemperatureC != temperature);
 public static ISpec <WeatherForecast> WithId(this ISpec <WeatherForecast> spec, long id) =>
 spec.And(x => x.WeatherForecastId == id);