ComplianceServer/oldcode/Core.Web/Controllers/ExamController.cs

17 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Core.Web.Controllers
{
public class ExamController : BaseController
{
public ActionResult QuestionsManagement()
{
return View();
}
}
}