コード例 #1
0
        public float EstimatePrice(PriceModel priceModel)
        {
            float finalPrice = float.MinValue;

            try
            {
                _pricingService.EstimatePrice(priceModel, out finalPrice);
            }
            catch (Exception ex)
            {
                throw ex;
                //Log Exception
            }
            return(finalPrice);
        }