public ActionResult Create(Appointment appointment) { Appointment oldAppointment = Session["AppointmentBeforedate"] as Appointment; appointment.Salesman = oldAppointment.Salesman; appointment.Customer = oldAppointment.Customer; _appointment.Insert(appointment); Session.Remove("AppointmentBeforedate"); return(View(appointment)); }