Example #1
0
 public ActionResult <IEnumerable <WeatherForecast> > WithComplexTypeInQuery([FromQuery] Paggination pagg)
 {
     return(null);
 }
 public async Task <IEnumerable <WeatherForecast> > WithCompexTypeInQuery([FromQuery] Paggination pagg)
 {
     return(await Task.FromResult <IEnumerable <WeatherForecast> >(null));
 }
 public async Task <IEnumerable <WeatherForecast> > Put(InputDTO body, [FromQuery] Paggination pagg)
 {
     return(await Task.FromResult <IEnumerable <WeatherForecast> >(null));
 }