public IActionResult GetAllInventoryByLocationId(int locId) { try { return(Ok(inventoryServices.GetAllOfInventoryByLocationId(locId))); } catch (Exception) { return(BadRequest()); } }