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 ShoeShopMvc.Models; namespace ShoeShopMvc.Controllers { public class ProductsController : Controller { private readonly ShoeShopContext _context; public ProductsController(ShoeShopContext context) { _context = context; } // GET: Products public async Task Index() { return View(await _context.Products.ToListAsync()); } // GET: Products/Details/5 public async Task Details(string id) { if (id == null) { return NotFound(); } var product = await _context.Products .FirstOrDefaultAsync(m => m.Article == id); if (product == null) { return NotFound(); } return View(product); } // GET: Products/Create public IActionResult Create() { return View(); } // POST: Products/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("Article,ProductName,EdIzm,Price,SupplierId,ManufactureId,CategoryId,Skidka,Colvo,OpisanieProduct,Image")] Product product) { if (ModelState.IsValid) { _context.Add(product); await _context.SaveChangesAsync(); return RedirectToAction(nameof(Index)); } return View(product); } // GET: Products/Edit/5 public async Task Edit(string id) { if (id == null) { return NotFound(); } var product = await _context.Products.FindAsync(id); if (product == null) { return NotFound(); } return View(product); } // POST: Products/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(string id, [Bind("Article,ProductName,EdIzm,Price,SupplierId,ManufactureId,CategoryId,Skidka,Colvo,OpisanieProduct,Image")] Product product) { if (id != product.Article) { return NotFound(); } if (ModelState.IsValid) { try { _context.Update(product); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductExists(product.Article)) { return NotFound(); } else { throw; } } return RedirectToAction(nameof(Index)); } return View(product); } // GET: Products/Delete/5 public async Task Delete(string id) { if (id == null) { return NotFound(); } var product = await _context.Products .FirstOrDefaultAsync(m => m.Article == id); if (product == null) { return NotFound(); } return View(product); } // POST: Products/Delete/5 [HttpPost, ActionName("Delete")] [ValidateAntiForgeryToken] public async Task DeleteConfirmed(string id) { var product = await _context.Products.FindAsync(id); if (product != null) { _context.Products.Remove(product); } await _context.SaveChangesAsync(); return RedirectToAction(nameof(Index)); } private bool ProductExists(string id) { return _context.Products.Any(e => e.Article == id); } } }