63 lines
1.5 KiB
C#
63 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using EveryThing.Data;
|
|
using EveryThing.Models;
|
|
using EveryThing.Models.Vehicle;
|
|
|
|
namespace EveryThing.Pages.FleetIssues
|
|
{
|
|
public class DeleteModel : PageModel
|
|
{
|
|
private readonly ApplicationDbContext _context;
|
|
|
|
public DeleteModel(ApplicationDbContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
[BindProperty]
|
|
public VehicleIssue Issue { get; set; }
|
|
|
|
public async Task<IActionResult> OnGetAsync(int? id)
|
|
{
|
|
if (id == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
|
|
Issue = await _context.VehicleIssues
|
|
.Include(i => i.Employee)
|
|
.Include(i => i.Vehicle).FirstOrDefaultAsync(m => m.IdVehicleIssue == id);
|
|
|
|
if (Issue == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
return Page();
|
|
}
|
|
|
|
public async Task<IActionResult> OnPostAsync(int? id)
|
|
{
|
|
if (id == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
|
|
Issue = await _context.VehicleIssues.FindAsync(id);
|
|
|
|
if (Issue != null)
|
|
{
|
|
_context.VehicleIssues.Remove(Issue);
|
|
await _context.SaveChangesAsync();
|
|
}
|
|
|
|
return RedirectToPage("./Index");
|
|
}
|
|
}
|
|
}
|