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 Microsoft.Extensions.Options; using Moshaverino.Web.Models; namespace Moshaverino.Web.Controllers { public class HomeController : Controller { private readonly MoshaverinoContext _context; private readonly SiteSettings _siteSettings; public HomeController(MoshaverinoContext context , IOptionsSnapshot siteSettings) { _context = context; _siteSettings = siteSettings.Value; } // GET: Home public async Task Index() { if (_siteSettings.ShowPanel) return View(await _context.Students.ToListAsync()); else return Ok(); } // GET: Home/Details/5 public async Task Details(int? id) { if (id == null) { return NotFound(); } var student = await _context.Students .FirstOrDefaultAsync(m => m.StudentId == id); if (student == null) { return NotFound(); } return View(student); } // GET: Home/Create public IActionResult Create() { return View(); } // POST: Home/Create // To protect from overposting attacks, please 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("StudentId,PhoneNumber,Code,HumenSex,FullName,StudyField,StudyGrade,AverageNumber,FavoriteLesson,UnFavoriteLesson,FavoriteExam,AverageTaraz,CreationTime,RemoveTime,IsRemoved")] Student student) { if (ModelState.IsValid) { _context.Add(student); await _context.SaveChangesAsync(); return RedirectToAction(nameof(Index)); } return View(student); } // GET: Home/Edit/5 public async Task Edit(int? id) { if (id == null) { return NotFound(); } var student = await _context.Students.FindAsync(id); if (student == null) { return NotFound(); } return View(student); } // POST: Home/Edit/5 // To protect from overposting attacks, please 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("StudentId,PhoneNumber,Code,HumenSex,FullName,StudyField,StudyGrade,AverageNumber,FavoriteLesson,UnFavoriteLesson,FavoriteExam,AverageTaraz,CreationTime,RemoveTime,IsRemoved")] Student student) { if (id != student.StudentId) { return NotFound(); } if (ModelState.IsValid) { try { _context.Update(student); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StudentExists(student.StudentId)) { return NotFound(); } else { throw; } } return RedirectToAction(nameof(Index)); } return View(student); } // GET: Home/Delete/5 public async Task Delete(int? id) { if (id == null) { return NotFound(); } var student = await _context.Students .FirstOrDefaultAsync(m => m.StudentId == id); if (student == null) { return NotFound(); } return View(student); } // POST: Home/Delete/5 [HttpPost, ActionName("Delete")] [ValidateAntiForgeryToken] public async Task DeleteConfirmed(int id) { var student = await _context.Students.FindAsync(id); _context.Students.Remove(student); await _context.SaveChangesAsync(); return RedirectToAction(nameof(Index)); } private bool StudentExists(int id) { return _context.Students.Any(e => e.StudentId == id); } } }