| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- 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 OrdersController : Controller
- {
- private readonly ShoeShopContext _context;
- public OrdersController(ShoeShopContext context)
- {
- _context = context;
- }
- // GET: Orders
- public async Task<IActionResult> Index()
- {
- return View(await _context.Orders.ToListAsync());
- }
- // GET: Orders/Details/5
- public async Task<IActionResult> Details(string id)
- {
- if (id == null)
- {
- return NotFound();
- }
- var order = await _context.Orders
- .FirstOrDefaultAsync(m => m.OrdersId == id);
- if (order == null)
- {
- return NotFound();
- }
- return View(order);
- }
- // GET: Orders/Create
- public IActionResult Create()
- {
- return View();
- }
- // POST: Orders/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("OrdersId,OrdersDate,DeliveryDate,AddressPickpoints,ClientId,Cod,StatusId")] Order order)
- {
- if (ModelState.IsValid)
- {
- _context.Add(order);
- await _context.SaveChangesAsync();
- return RedirectToAction(nameof(Index));
- }
- return View(order);
- }
- // GET: Orders/Edit/5
- public async Task<IActionResult> Edit(string id)
- {
- if (id == null)
- {
- return NotFound();
- }
- var order = await _context.Orders.FindAsync(id);
- if (order == null)
- {
- return NotFound();
- }
- return View(order);
- }
- // POST: Orders/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(string id, [Bind("OrdersId,OrdersDate,DeliveryDate,AddressPickpoints,ClientId,Cod,StatusId")] Order order)
- {
- if (id != order.OrdersId)
- {
- return NotFound();
- }
- if (ModelState.IsValid)
- {
- try
- {
- _context.Update(order);
- await _context.SaveChangesAsync();
- }
- catch (DbUpdateConcurrencyException)
- {
- if (!OrderExists(order.OrdersId))
- {
- return NotFound();
- }
- else
- {
- throw;
- }
- }
- return RedirectToAction(nameof(Index));
- }
- return View(order);
- }
- // GET: Orders/Delete/5
- public async Task<IActionResult> Delete(string id)
- {
- if (id == null)
- {
- return NotFound();
- }
- var order = await _context.Orders
- .FirstOrDefaultAsync(m => m.OrdersId == id);
- if (order == null)
- {
- return NotFound();
- }
- return View(order);
- }
- // POST: Orders/Delete/5
- [HttpPost, ActionName("Delete")]
- [ValidateAntiForgeryToken]
- public async Task<IActionResult> DeleteConfirmed(string id)
- {
- var order = await _context.Orders.FindAsync(id);
- if (order != null)
- {
- _context.Orders.Remove(order);
- }
- await _context.SaveChangesAsync();
- return RedirectToAction(nameof(Index));
- }
- private bool OrderExists(string id)
- {
- return _context.Orders.Any(e => e.OrdersId == id);
- }
- }
- }
|