Start a MVC project

This commit is contained in:
Tracy Pearson
2020-10-16 22:55:16 -04:00
parent 4ecddf9806
commit 09a3f1012c
52 changed files with 40122 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebMVC.Controllers
{
public class ApiController : Controller
{
public override void OnActionExecuted(ActionExecutedContext context)
{
// This is where I capture the error from the ApiService
base.OnActionExecuted(context);
}
}
}