public IActionResult Pref() { GuestPref pref = new GuestPref(); pref.Room = "Suite"; pref.Beds = "2"; pref.Pool = "Yes"; pref.Internet = "Yes"; return(View(pref)); }
public IActionResult Pref(GuestPref pref) { return(View(pref)); }