예제 #1
0
 public IActionResult GetYachtMerchantProduct(int id)
 {
     try
     {
         var res = _yachtMerchantProductInventoryService.GetProductPricingById(id);
         return(this.OkResponse(res));
     }
     catch (Exception ex)
     {
         return(this.BadRequestResponse(ex.StackTrace.ToString()));
     }
 }