20 lines
383 B
C#
20 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Chruch.Net.Models;
|
|
|
|
namespace Chruch.Net.Controllers
|
|
{
|
|
public class NewVisitorController :Controller
|
|
{
|
|
// GET: NewVisitor
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |