18 lines
423 B
C#
18 lines
423 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
using System.Web.Mvc;
|
|||
|
|
|
|||
|
|
using NP.Model;
|
|||
|
|
using NP.Base.Auth;
|
|||
|
|
namespace NP.FO.Controllers
|
|||
|
|
{
|
|||
|
|
public class FOOpenBaseController : FOBaseController
|
|||
|
|
{
|
|||
|
|
protected override void OnActionExecuting(ActionExecutingContext filterContext)
|
|||
|
|
{
|
|||
|
|
base.OnActionExecuting(filterContext);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|