You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.8 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 IoTSharp.Gateway.Modbus.Data;
namespace IoTSharp.Gateway.Modbus.Pages.SlaveAdmin
{
public class DeleteModel : PageModel
{
private readonly IoTSharp.Gateway.Modbus.Data.ApplicationDbContext _context;
public DeleteModel(IoTSharp.Gateway.Modbus.Data.ApplicationDbContext context)
{
_context = context;
}
[BindProperty]
public ModbusSlave ModbusSlave { get; set; } = default!;
public async Task<IActionResult> OnGetAsync(Guid? id)
{
if (id == null || _context.ModbusSlaves == null)
{
return NotFound();
}
var modbusslave = await _context.ModbusSlaves.FirstOrDefaultAsync(m => m.Id == id);
if (modbusslave == null)
{
return NotFound();
}
else
{
ModbusSlave = modbusslave;
}
return Page();
}
public async Task<IActionResult> OnPostAsync(Guid? id)
{
if (id == null || _context.ModbusSlaves == null)
{
return NotFound();
}
var modbusslave = await _context.ModbusSlaves.FindAsync(id);
if (modbusslave != null)
{
ModbusSlave = modbusslave;
_context.ModbusSlaves.Remove(ModbusSlave);
await _context.SaveChangesAsync();
}
return RedirectToPage("./Index");
}
}
}