+1  A: 

Where is the parameter-less constructor for your controller? ManagePermissionsController

The default controller factory requires one, so unless you create your own Controller factory you'll need to add one and change the way you initialize your DataManager.

Hightechrider
thanks, please, can you say, what is wrong in my ControllerFactory class?
loviji
Where is your controller factory? The stack trace says "DefaultControllerFactory" which implies it's not using your controller factory.
Hightechrider
+2  A: 

I fix it, like this:

protected void Application_Start()
{
            AreaRegistration.RegisterAllAreas();

            RegisterRoutes(RouteTable.Routes);
            //by this code:
            ControllerBuilder.Current.SetControllerFactory(new ControllerFactory());
}
loviji