public async Task <IActionResult> Get() { var model = await provider.Get() ?? new KeyFigure(); return(this.Ok(model)); }
public async Task <ActionResult> Get() { var data = await provider.Get() ?? new KeyFigure(); return(this.Ok(data)); }