public ActionResult <IEnumerable <PhysicalItem> > GetByLocation(int locationId)
 {
     try
     {
         return(Ok(_pis.GetByLocation(locationId)));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }