colors (ctor)

This commit is contained in:
Paul Schneider 2017-02-12 03:53:33 +01:00
commit fab5854f8b
31 changed files with 16278 additions and 10579 deletions

View file

@ -0,0 +1,122 @@
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
using Microsoft.AspNet.Mvc.Rendering;
using Microsoft.Data.Entity;
using Yavsc.Models;
using Yavsc.Models.Drawing;
namespace Yavsc.Controllers
{
public class ColorsController : Controller
{
private ApplicationDbContext _context;
public ColorsController(ApplicationDbContext context)
{
_context = context;
}
// GET: Colors
public async Task<IActionResult> Index()
{
return View(await _context.Color.ToListAsync());
}
// GET: Colors/Details/5
public async Task<IActionResult> Details(byte? id)
{
if (id == null)
{
return HttpNotFound();
}
Color color = await _context.Color.SingleAsync(m => m.Red == id);
if (color == null)
{
return HttpNotFound();
}
return View(color);
}
// GET: Colors/Create
public IActionResult Create()
{
return View(new Color());
}
// POST: Colors/Create
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Create(Color color)
{
if (ModelState.IsValid)
{
_context.Color.Add(color);
await _context.SaveChangesAsync();
return RedirectToAction("Index");
}
return View(color);
}
// GET: Colors/Edit/5
public async Task<IActionResult> Edit(byte? id)
{
if (id == null)
{
return HttpNotFound();
}
Color color = await _context.Color.SingleAsync(m => m.Red == id);
if (color == null)
{
return HttpNotFound();
}
return View(color);
}
// POST: Colors/Edit/5
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Edit(Color color)
{
if (ModelState.IsValid)
{
_context.Update(color);
await _context.SaveChangesAsync();
return RedirectToAction("Index");
}
return View(color);
}
// GET: Colors/Delete/5
[ActionName("Delete")]
public async Task<IActionResult> Delete(byte? id)
{
if (id == null)
{
return HttpNotFound();
}
Color color = await _context.Color.SingleAsync(m => m.Red == id);
if (color == null)
{
return HttpNotFound();
}
return View(color);
}
// POST: Colors/Delete/5
[HttpPost, ActionName("Delete")]
[ValidateAntiForgeryToken]
public async Task<IActionResult> DeleteConfirmed(byte id)
{
Color color = await _context.Color.SingleAsync(m => m.Red == id);
_context.Color.Remove(color);
await _context.SaveChangesAsync();
return RedirectToAction("Index");
}
}
}

View file

@ -0,0 +1,124 @@
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Authorization;
using Microsoft.AspNet.Mvc;
using Microsoft.AspNet.Mvc.Rendering;
using Microsoft.Data.Entity;
namespace Yavsc.Controllers
{
using Models;
using Models.Haircut;
[Authorize("AdministratorOnly")]
public class HairTaintsController : Controller
{
private ApplicationDbContext _context;
public HairTaintsController(ApplicationDbContext context)
{
_context = context;
}
// GET: HairTaints
public async Task<IActionResult> Index()
{
return View(await _context.HairTaint.ToListAsync());
}
// GET: HairTaints/Details/5
public async Task<IActionResult> Details(long? id)
{
if (id == null)
{
return HttpNotFound();
}
HairTaint hairTaint = await _context.HairTaint.SingleAsync(m => m.Id == id);
if (hairTaint == null)
{
return HttpNotFound();
}
return View(hairTaint);
}
// GET: HairTaints/Create
public IActionResult Create()
{
return View();
}
// POST: HairTaints/Create
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Create(HairTaint hairTaint)
{
if (ModelState.IsValid)
{
_context.HairTaint.Add(hairTaint);
await _context.SaveChangesAsync();
return RedirectToAction("Index");
}
return View(hairTaint);
}
// GET: HairTaints/Edit/5
public async Task<IActionResult> Edit(long? id)
{
if (id == null)
{
return HttpNotFound();
}
HairTaint hairTaint = await _context.HairTaint.SingleAsync(m => m.Id == id);
if (hairTaint == null)
{
return HttpNotFound();
}
return View(hairTaint);
}
// POST: HairTaints/Edit/5
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Edit(HairTaint hairTaint)
{
if (ModelState.IsValid)
{
_context.Update(hairTaint);
await _context.SaveChangesAsync();
return RedirectToAction("Index");
}
return View(hairTaint);
}
// GET: HairTaints/Delete/5
[ActionName("Delete")]
public async Task<IActionResult> Delete(long? id)
{
if (id == null)
{
return HttpNotFound();
}
HairTaint hairTaint = await _context.HairTaint.SingleAsync(m => m.Id == id);
if (hairTaint == null)
{
return HttpNotFound();
}
return View(hairTaint);
}
// POST: HairTaints/Delete/5
[HttpPost, ActionName("Delete")]
[ValidateAntiForgeryToken]
public async Task<IActionResult> DeleteConfirmed(long id)
{
HairTaint hairTaint = await _context.HairTaint.SingleAsync(m => m.Id == id);
_context.HairTaint.Remove(hairTaint);
await _context.SaveChangesAsync();
return RedirectToAction("Index");
}
}
}