public IActionResult GetAllProductInventory(int id, int categoryId)
        {
            var result = _yachtMerchantProductInventoryService.GetAllProductInventoryByMerchantId(id, categoryId);

            if (result.IsSuccessStatusCode)
            {
                return(Ok(result));
            }
            return(BadRequest());
        }