예제 #1
0
        public ActionResult Parcels()
        {
            ParcelVariable myParcel = new ParcelVariable();

            myParcel.SetWeight(Request.Query["weight"]);
            myParcel.SetLength(Request.Query["length"]);
            myParcel.SetWidth(Request.Query["width"]);
            myParcel.SetHeight(Request.Query["height"]);
            myParcel.SetPrice();
            return(View(myParcel));
        }