Church.Net.API/Chruch.Net/Controllers/Register2019Controller.cs
2022-09-08 08:04:32 -07:00

26 lines
478 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Chruch.Net.Controllers
{
public class Register2019Controller : Controller
{
// GET: Register2018
public ActionResult Index(string id)
{
if (id=="EN")
{
return View();
}
else
{
return View("IndexCn");
}
}
}
}