SystemController.cs
381 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using CWA.CpoOnline.Models;
namespace CWA.CpoOnline.Controllers
{
[Authorize(Roles = CpoRoles.Admin)]
public class SystemController : Controller
{
// GET: System
public ActionResult Index()
{
return View();
}
}
}