13 lines
284 B
C#
13 lines
284 B
C#
using System.Web.Mvc;
|
|
|
|
namespace Kreta.Web.Areas.Adminisztracio.Controllers
|
|
{
|
|
[AllowAnonymous]
|
|
public class EmailKezelesController : Controller
|
|
{
|
|
public ActionResult Index(string data)
|
|
{
|
|
return View("Index", (object)data);
|
|
}
|
|
}
|
|
}
|