public ActionResult AddRentalClient(Rezerwacja res) { res.Klient = int.Parse(Session["ID"].ToString()); Pracownik.DodajRezerwacje(res); this.GetLog().Info("Reservation no." + res.id + " has been added"); return(RedirectToAction("ShowRental")); }
public ActionResult AddRental(Rezerwacja res) { Pracownik.DodajRezerwacje(res); this.GetLog().Info("Reservation no." + res.id + " has been added"); return(Redirect(Request.UrlReferrer.ToString())); }
public ActionResult AddRental(Rezerwacja res) { Pracownik.DodajRezerwacje(res); this.GetLog().Info("Reservation no." + res.id + " has been added"); return(RedirectToAction("ShowRental")); }