2017-11-02 04:54:33 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using netcore_mvc_templates.Models;
|
|
|
|
|
|
|
|
|
|
namespace netcore_mvc_templates.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HomeController : Controller
|
|
|
|
|
{
|
|
|
|
|
public IActionResult Index()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult About()
|
|
|
|
|
{
|
2017-11-21 10:34:04 +01:00
|
|
|
|
ViewData["Title"] = "About Page";
|
2017-11-02 04:54:33 +01:00
|
|
|
|
ViewData["Message"] = "Your application description page.";
|
|
|
|
|
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Contact()
|
|
|
|
|
{
|
2017-11-21 10:34:04 +01:00
|
|
|
|
ViewData["Title"] = "Contact Page";
|
2017-11-02 04:54:33 +01:00
|
|
|
|
ViewData["Message"] = "Your contact page.";
|
|
|
|
|
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Error()
|
|
|
|
|
{
|
|
|
|
|
return View(new ErrorViewModel { Title = "Error", Code = 500});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|