public MeetingRoomController(
     ICatalogService catalogService,
     IVmrService vmrService,
     IVmrGenericService vmrGenericService,
     IAdditionalFieldsService additionalFieldsService,
     IVmrStepsService vmrStepsServices,
     IVmrRemarksService vmrRemarksService,
     IVmrPermissionsService vmrPermissionsService,
     IVerDocumentService verDocumentService,
     ICommentService commentService,
     IVerGenericService verGenericService,
     IDocumentManagementService documentManagementService,
     ICommentRulesService commentRulesService,
     IVmrNotificationsService vmrNotificationsService)
 {
     _catalogService            = catalogService;
     _vmrService                = vmrService;
     _vmrGenericService         = vmrGenericService;
     _additionalFieldsService   = additionalFieldsService;
     _vmrStepsServices          = vmrStepsServices;
     _vmrRemarksService         = vmrRemarksService;
     _vmrPermissionsService     = vmrPermissionsService;
     _verGenericService         = verGenericService;
     _documentManagementService = documentManagementService;
     _viewModelMapperHelper     = new ViewModelMapperHelper(
         ViewBag,
         _vmrService,
         _catalogService,
         _vmrGenericService,
         commentService,
         commentRulesService);
     _verDocumentService      = verDocumentService;
     _vmrNotificationsService = vmrNotificationsService;
 }
 public ViewModelMapperHelper(
     dynamic viewBag,
     IVmrService vmrService,
     ICatalogService catalogService,
     IVmrGenericService vmrGenericService,
     ICommentService commentService,
     ICommentRulesService commentRulesService)
 {
     _vmrService          = vmrService;
     _viewBag             = viewBag;
     _catalogService      = catalogService;
     _vmrGenericService   = vmrGenericService;
     _commentService      = commentService;
     _commentRulesService = commentRulesService;
 }
 public MyMeetingsController(ICatalogService catalogService,
                             IVmrService vmrService,
                             IMyMeetingsService myMeetingsService,
                             IVmrGenericService vmrGenericService,
                             ICommentService commentService,
                             ICommentRulesService commentRulesService)
 {
     _catalogService        = catalogService;
     _vmrService            = vmrService;
     _myMeetingsService     = myMeetingsService;
     _vmrGenericService     = vmrGenericService;
     _commentService        = commentService;
     _commentRulesService   = commentRulesService;
     _viewModelMapperHelper = new ViewModelMapperHelper(
         ViewBag,
         _vmrService,
         _catalogService,
         _vmrGenericService,
         _commentService,
         _commentRulesService);
 }