using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.EntityFrameworkCore; using EveryThing.Data; using EveryThing.Models; using EveryThing.Models.CodeTable; namespace EveryThing.Pages.CodeTableJobs { public class EditModel : PageModel { private readonly ApplicationDbContext _context; public EditModel(ApplicationDbContext context) { _context = context; } [BindProperty] public CodeTableJob Job { get; set; } public async Task OnGetAsync(int? id) { if (id == null) { return NotFound(); } Job = await _context.CodeTableJobs .Include(j => j.Company).FirstOrDefaultAsync(m => m.IdJob == id); if (Job == null) { return NotFound(); } ViewData["IdCompanyFk"] = new SelectList(_context.CodeTableCompanies, "IdCompany", "Ceo"); return Page(); } // To protect from overposting attacks, enable the specific properties you want to bind to. // For more details, see https://aka.ms/RazorPagesCRUD. public async Task OnPostAsync() { if (!ModelState.IsValid) { return Page(); } _context.Attach(Job).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!JobExists(Job.IdJob)) { return NotFound(); } else { throw; } } return RedirectToPage("./Index"); } private bool JobExists(int id) { return _context.CodeTableJobs.Any(e => e.IdJob == id); } } }