using System.Security.Claims; using System.Threading.Tasks; using Microsoft.AspNet.Mvc; using Microsoft.Data.Entity; using Yavsc.Models; using Yavsc.Models.Relationship; namespace Yavsc.Controllers { public class CircleController : Controller { private ApplicationDbContext _context; public CircleController(ApplicationDbContext context) { _context = context; } // GET: Circle public async Task Index() { return View(await _context.Circle.ToListAsync()); } // GET: Circle/Details/5 public async Task Details(long? id) { if (id == null) { return HttpNotFound(); } Circle circle = await _context.Circle.SingleAsync(m => m.Id == id); if (circle == null) { return HttpNotFound(); } return View(circle); } // GET: Circle/Create public IActionResult Create() { return View(); } // POST: Circle/Create [HttpPost] [ValidateAntiForgeryToken] public async Task Create(Circle circle) { if (ModelState.IsValid) { _context.Circle.Add(circle); await _context.SaveChangesAsync(User.GetUserId()); return RedirectToAction("Index"); } return View(circle); } // GET: Circle/Edit/5 public async Task Edit(long? id) { if (id == null) { return HttpNotFound(); } Circle circle = await _context.Circle.SingleAsync(m => m.Id == id); if (circle == null) { return HttpNotFound(); } return View(circle); } // POST: Circle/Edit/5 [HttpPost] [ValidateAntiForgeryToken] public async Task Edit(Circle circle) { if (ModelState.IsValid) { _context.Update(circle); await _context.SaveChangesAsync(User.GetUserId()); return RedirectToAction("Index"); } return View(circle); } // GET: Circle/Delete/5 [ActionName("Delete")] public async Task Delete(long? id) { if (id == null) { return HttpNotFound(); } Circle circle = await _context.Circle.SingleAsync(m => m.Id == id); if (circle == null) { return HttpNotFound(); } return View(circle); } // POST: Circle/Delete/5 [HttpPost, ActionName("Delete")] [ValidateAntiForgeryToken] public async Task DeleteConfirmed(long id) { Circle circle = await _context.Circle.SingleAsync(m => m.Id == id); _context.Circle.Remove(circle); await _context.SaveChangesAsync(User.GetUserId()); return RedirectToAction("Index"); } } }