public IActionResult Patch(string id, [FromBody] Item newItem)
 {
     return(Ok(basketDataAccess.Add(id, newItem)));
 }