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 turf_tasker.Data; using turf_tasker.Models; namespace turf_tasker.Controllers { public class LawnCareTipController : Controller { private readonly ApplicationDbContext _context; public LawnCareTipController(ApplicationDbContext context) { _context = context; } // GET: LawnCareTip public async Task Index() { return View(await _context.LawnCareTips.ToListAsync()); } // GET: LawnCareTip/Details/5 public async Task Details(int? id) { if (id == null) { return NotFound(); } var lawnCareTip = await _context.LawnCareTips .FirstOrDefaultAsync(m => m.Id == id); if (lawnCareTip == null) { return NotFound(); } return View(lawnCareTip); } // GET: LawnCareTip/Create public IActionResult Create() { return View(); } // POST: LawnCareTip/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 Create([Bind("Id,Title,Category,Content")] LawnCareTip lawnCareTip) { if (ModelState.IsValid) { _context.Add(lawnCareTip); await _context.SaveChangesAsync(); return RedirectToAction(nameof(Index)); } return View(lawnCareTip); } // GET: LawnCareTip/Edit/5 public async Task Edit(int? id) { if (id == null) { return NotFound(); } var lawnCareTip = await _context.LawnCareTips.FindAsync(id); if (lawnCareTip == null) { return NotFound(); } return View(lawnCareTip); } // POST: LawnCareTip/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 Edit(int id, [Bind("Id,Title,Category,Content")] LawnCareTip lawnCareTip) { if (id != lawnCareTip.Id) { return NotFound(); } if (ModelState.IsValid) { try { _context.Update(lawnCareTip); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!LawnCareTipExists(lawnCareTip.Id)) { return NotFound(); } else { throw; } } return RedirectToAction(nameof(Index)); } return View(lawnCareTip); } // GET: LawnCareTip/Delete/5 public async Task Delete(int? id) { if (id == null) { return NotFound(); } var lawnCareTip = await _context.LawnCareTips .FirstOrDefaultAsync(m => m.Id == id); if (lawnCareTip == null) { return NotFound(); } return View(lawnCareTip); } // POST: LawnCareTip/Delete/5 [HttpPost, ActionName("Delete")] [ValidateAntiForgeryToken] public async Task DeleteConfirmed(int id) { var lawnCareTip = await _context.LawnCareTips.FindAsync(id); if (lawnCareTip != null) { _context.LawnCareTips.Remove(lawnCareTip); } await _context.SaveChangesAsync(); return RedirectToAction(nameof(Index)); } private bool LawnCareTipExists(int id) { return _context.LawnCareTips.Any(e => e.Id == id); } } }