예제 #1
0
 public IActionResult UpdateYachtMerchantProductPricing(YachtMerchantProductPricingCreateOrUpdateModel model)
 {
     try
     {
         var res = _yachtMerchantProductInventoryService.UpdateYachtMerchantProductPricing(model);
         if (res.IsSucceed)
         {
             return(this.OkResponse(res));
         }
         return(this.BadRequestResponse(res.Message));
     }
     catch (Exception ex)
     {
         return(this.BadRequestResponse(ex.StackTrace.ToString()));
     }
 }