public IActionResult UpdateYachtMerchantProductInventory(YachtMerchantProductInventoryUpdateModel model)
        {
            var res = _yachtMerchantProductInventoryService.UpdateYachtMerchantProductInventory(model);

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