Esempio n. 1
0
        public ActionResult FlightUpdate(Flight obj)
        {
            bool changes = false;

            changes = dalobj.UpdateFlight(obj);



            if (dalobj.UpdateFlight(obj))
            {
                return(RedirectToAction("Flights"));
            }



            return(View());
        }