15 lines
399 B
C#
15 lines
399 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.Filters;
|
|
|
|
namespace BpsRwApp.Controllers
|
|
{
|
|
public abstract class AppControllerBase : Controller
|
|
{
|
|
public override void OnActionExecuting(ActionExecutingContext context)
|
|
{
|
|
ViewData["Layout"] = "~/Views/Shared/Layouts/App/_Layout.cshtml";
|
|
base.OnActionExecuting(context);
|
|
}
|
|
}
|
|
}
|