public IActionResult CreateYachtMerchantProductPricing(ProductPricingCreateOrUpdateModel model)
        {
            var res = _yachtMerchantProductInventoryService.CreateProductPricing(model);

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