Пример #1
0
        public ActionResult Create(string description, int weight, int length, int height, int width)
        {
            Parcel myParcel = new Parcel(description, weight, length, height, width);

            Parcel.CalculatePrice(myParcel);
            return(RedirectToAction("Index"));
        }