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:
public class Dpc : DayPilotCalendar
{
string userId;
Dpc(string userId) {
this.userId = userId;
}
// ...
}
You can also set the property value directly.
Another option is to access the controller class using "Controller" property of DayPilotCalendar.