source: Farmatiko/Controllers/ErrorController.cs@ 1f4846d

Last change on this file since 1f4846d was 6f203af, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago

Change methods & add error controller

  • Property mode set to 100644
File size: 311 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Threading.Tasks;
5using Microsoft.AspNetCore.Mvc;
6
7namespace Farmatiko.Controllers
8{
9 public class ErrorController : Controller
10 {
11 public IActionResult Index()
12 {
13 return View();
14 }
15 }
16}
Note: See TracBrowser for help on using the repository browser.