blob: 9eef768a2daa6c30e6d3e3192480f9c096fc6946 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Project_Unite.Controllers
{
public class LegalController : Controller
{
// GET: Legal/TOS
public ActionResult TOS()
{
return View();
}
// GET: Legal/Privacy
public ActionResult Privacy()
{
return View();
}
}
}
|