From 3f4c0720e1e3421431e7baa20882a4a4512a7fab Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 19 Oct 2025 23:41:23 +0200 Subject: Initial --- src/Pages/App/ReservationForm.cshtml.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Pages/App/ReservationForm.cshtml.cs (limited to 'src/Pages/App/ReservationForm.cshtml.cs') diff --git a/src/Pages/App/ReservationForm.cshtml.cs b/src/Pages/App/ReservationForm.cshtml.cs new file mode 100644 index 0000000..e509a46 --- /dev/null +++ b/src/Pages/App/ReservationForm.cshtml.cs @@ -0,0 +1,24 @@ +using System.Collections.Generic; +using System.Linq; +using IOL.Fagprove.Data; +using IOL.Fagprove.Data.Models; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace IOL.Fagprove.Pages.App +{ + public class ReservationForm : PageModel + { + public List Cabins { get; set; } + private readonly AppDbContext _context; + + public ReservationForm(AppDbContext context) + { + _context = context; + } + + public void OnGet() + { + Cabins = _context.Cabins.ToList(); + } + } +} \ No newline at end of file -- cgit v1.3