31 lines
760 B
C#
31 lines
760 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ewide.Web.Entry.Controllers
|
|
{
|
|
[AllowAnonymous]
|
|
public class ManageController : Controller
|
|
{
|
|
public IActionResult VoteResult()
|
|
{
|
|
ViewBag.Title = "宁波市“甬江建设杯”选票";
|
|
return View();
|
|
}
|
|
|
|
public IActionResult Expert()
|
|
{
|
|
ViewBag.Title = "宁波市“甬江建设杯”选票";
|
|
return View();
|
|
}
|
|
public IActionResult nbczResult()
|
|
{
|
|
ViewBag.Title = "共赴宁波之春 报名结果";
|
|
return View();
|
|
}
|
|
}
|
|
}
|