Example #1
0
        public ActionResult Estimate(double height, double width, double depth, double weight)
        {
            Estimator myParcel = new Estimator(height, width, depth, weight);

            myParcel.VolumeCalc();
            return(View("Index", myParcel));
        }