if cities in route you're searching for intersects with cities in the smb's ticket for the route, taken place will be unavailable and capacity in the search results will be decreased
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
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<Ticket> Tickets { get; set; }
|
|
[BindProperty(SupportsGet = true)] public int ReturnTicketId { get; set; }
|
|
|
|
private readonly TicketOfficeContext _context;
|
|
|
|
public IndexModel(TicketOfficeContext context, ILogger<IndexModel> 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;
|
|
} |