public async Task <ActionResult <List <Value> > > GetValuesAsync() { var values = await _valueService.GetValuesAsync(); return(Ok(values)); }