我正在编写一个 ASP.NET WEB API。
一旦执行了动作,我想调用一个方法。
例如:
public string Action1(object a)
{
// ...
// call method1();
return "sample1";
}
public string Action2(object b)
{
// ...
// call method1();
return "sample2";
}
有没有一种方法可以调用method1()
每一个动作而不在每一个动作中提及?