LANCommander/Controllers/CompaniesController.cs
2023-01-02 15:44:04 -06:00

164 lines
4.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.EntityFrameworkCore;
using LANCommander.Data;
using LANCommander.Data.Models;
namespace LANCommander.Controllers
{
public class CompaniesController : Controller
{
private readonly DatabaseContext _context;
public CompaniesController(DatabaseContext context)
{
_context = context;
}
// GET: Companies
public async Task<IActionResult> Index()
{
return _context.Companies != null ?
View(await _context.Companies.ToListAsync()) :
Problem("Entity set 'DatabaseContext.Companies' is null.");
}
// GET: Companies/Details/5
public async Task<IActionResult> Details(Guid? id)
{
if (id == null || _context.Companies == null)
{
return NotFound();
}
var company = await _context.Companies
.FirstOrDefaultAsync(m => m.Id == id);
if (company == null)
{
return NotFound();
}
return View(company);
}
// GET: Companies/Create
public IActionResult Create()
{
return View();
}
// POST: Companies/Create
// To protect from overposting attacks, enable the specific properties you want to bind to.
// For more details, see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Create([Bind("Name,Id,CreatedOn,CreatedById,UpdatedOn,UpdatedById")] Company company)
{
if (ModelState.IsValid)
{
company.Id = Guid.NewGuid();
_context.Add(company);
await _context.SaveChangesAsync();
return RedirectToAction(nameof(Index));
}
return View(company);
}
// GET: Companies/Edit/5
public async Task<IActionResult> Edit(Guid? id)
{
if (id == null || _context.Companies == null)
{
return NotFound();
}
var company = await _context.Companies.FindAsync(id);
if (company == null)
{
return NotFound();
}
return View(company);
}
// POST: Companies/Edit/5
// To protect from overposting attacks, enable the specific properties you want to bind to.
// For more details, see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Edit(Guid id, [Bind("Name,Id,CreatedOn,CreatedById,UpdatedOn,UpdatedById")] Company company)
{
if (id != company.Id)
{
return NotFound();
}
if (ModelState.IsValid)
{
try
{
_context.Update(company);
await _context.SaveChangesAsync();
}
catch (DbUpdateConcurrencyException)
{
if (!CompanyExists(company.Id))
{
return NotFound();
}
else
{
throw;
}
}
return RedirectToAction(nameof(Index));
}
return View(company);
}
// GET: Companies/Delete/5
public async Task<IActionResult> Delete(Guid? id)
{
if (id == null || _context.Companies == null)
{
return NotFound();
}
var company = await _context.Companies
.FirstOrDefaultAsync(m => m.Id == id);
if (company == null)
{
return NotFound();
}
return View(company);
}
// POST: Companies/Delete/5
[HttpPost, ActionName("Delete")]
[ValidateAntiForgeryToken]
public async Task<IActionResult> DeleteConfirmed(Guid id)
{
if (_context.Companies == null)
{
return Problem("Entity set 'DatabaseContext.Companies' is null.");
}
var company = await _context.Companies.FindAsync(id);
if (company != null)
{
_context.Companies.Remove(company);
}
await _context.SaveChangesAsync();
return RedirectToAction(nameof(Index));
}
private bool CompanyExists(Guid id)
{
return (_context.Companies?.Any(e => e.Id == id)).GetValueOrDefault();
}
}
}