public IActionResult CreateYachtMerchantProductInventory(YachtMerchantProductInventoryCreateModel model)
        {
            var res = _yachtMerchantProductInventoryService.CreateYachtMerchantProductInventory(model);

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