4 instantiations of CurrentWeather
Sample (4)
Controllers\TestController.cs (4)
40return TypedResults.Ok(new CurrentWeather(1.0f)); 45=> Ok(new CurrentWeather(-100)); 50=> Ok(new CurrentWeather(0)); 55=> Ok(new CurrentWeather(100));
4 references to CurrentWeather
Sample (4)
Controllers\TestController.cs (4)
38public Ok<CurrentWeather> GetCurrentWeather() 44public ActionResult<CurrentWeather> NoHttpMethod() 49public ActionResult<CurrentWeather> HttpQueryMethod() 54public ActionResult<CurrentWeather> UnsupportedHttpMethod()