using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; using Microsoft.EntityFrameworkCore; using TicketOffice.Data; using TicketOffice.Models; namespace TicketOffice.Pages.Account; public class IndexModel : PageModel { public List Tickets { get; set; } [BindProperty(SupportsGet = true)] public int ReturnTicketId { get; set; } private readonly TicketOfficeContext _context; public IndexModel(TicketOfficeContext context, ILogger logger) { _context = context; } public ActionResult OnGet() { if (!ValidateSession()) return RedirectToPage("/Auth/Login"); Tickets = _context.Ticket .Where(t => t.UserId == HttpContext.Session.GetInt32("UserId")) .Include(t => t.Route) .Include(t => t.Cities) .ToList(); return Page(); } public ActionResult OnGetReturnTicket() { OnGet(); Ticket returnTicket = _context.Ticket.Find(ReturnTicketId); if (returnTicket is not null) { _context.Remove(returnTicket); _context.SaveChanges(); return RedirectToPage("./Account"); } return NotFound(); } private bool ValidateSession() => HttpContext.Session.GetInt32("UserId") is not null; }