Пример #1
0
 public IActionResult GetAllInventoryByLocationId(int locId)
 {
     try
     {
         return(Ok(inventoryServices.GetAllOfInventoryByLocationId(locId)));
     }
     catch (Exception)
     {
         return(BadRequest());
     }
 }