Ejemplo n.º 1
0
 public IActionResult GetItemByLocationIdStickId(int locationId, int stickId)
 {
     try
     {
         return(Ok(inventoryServices.GetItemByLocIdStickId(locationId, stickId)));
     }
     catch (Exception)
     {
         return(BadRequest());
     }
 }