public ActionResult AddRent()
        {
            var rentModel = new RentViewModel
            {
                PlaneTypes = PlaneRequests.GetPlaneTypes()
            };

            return(View(rentModel));
        }
Ejemplo n.º 2
0
        public ActionResult AddPlaneModel()
        {
            var planeModel = new PlaneModelViewModel
            {
                PlaneTypes = PlaneRequests.GetPlaneTypes()
            };

            return(View(planeModel));
        }