blob: 4b41f9184a5ce0ab11de25f829e1aaf7503ce340 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Project_Unite.Models;
namespace Project_Unite.Controllers
{
[Authorize]
public class ContestsController : Controller
{
[AllowAnonymous]
// GET: Contests
public ActionResult Index()
{
var model = new ApplicationDbContext().Contests.ToArray();
return View(model);
}
public ActionResult ViewContest(string id)
{
var db = new ApplicationDbContext();
var c = db.Contests.FirstOrDefault(x => x.Id == id);
if (c == null)
return new HttpStatusCodeResult(404);
return View(c);
}
}
}
|