14 lines
269 B
C#
14 lines
269 B
C#
|
|
using System.Web;
|
||
|
|
using System.Web.Mvc;
|
||
|
|
|
||
|
|
namespace atakanozbancom
|
||
|
|
{
|
||
|
|
public class FilterConfig
|
||
|
|
{
|
||
|
|
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
|
||
|
|
{
|
||
|
|
filters.Add(new HandleErrorAttribute());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|