public async void Put(int id, [FromBody] Item ItemVal)
 {
     await _itemsManager.UpdateItem(id, ItemVal);
 }