コード例 #1
0
        public ActionResult UpdateReservation(VReservation vreservation)
        {
            Reservation reservation = new Reservation()
            {
                reservation_id   = vreservation.reservation_id,
                reservation_date = vreservation.reservation_date,
                reservation_time = vreservation.reservation_time,
                client_id        = vreservation.client_id,
                employee_id      = vreservation.employee_id,
                services_id      = vreservation.services_id
            };
            bool updateResult = updateReservation.UpdateObject(reservation, vreservation.reservation_id);

            if (updateResult)
            {
                return(RedirectToAction("UpdateReservation", "Reservation", new { @reservation_id = reservation.reservation_id, @UpdateResult = "Aktualizacja OK" }));
            }
            else
            {
                return(RedirectToAction("UpdateReservation", "Reservation", new { @reservation_id = reservation.reservation_id, @UpdateResult = "Aktualizacja Not OK" }));
            }
        }
コード例 #2
0
 public ActionResult deleteReservation(VReservation vReservation)
 {
     deletereservation = new DeleteReservation();
     deletereservation.DeleteReservation(vReservation.reservation_id);
     return(RedirectToAction("Index", "Reservation", new { visibleTrue = false }));
 }