Questions Tagged user
How can I make a filter per user?
Answered: You can add a custom constructor that will accept additional parameters: Action:
public ActionResult Backend()
{
var userId = ....
return new Dpc(userId).CallBack(this);
}
Dpc class:
pu...
Questions 1-1 of 1