public MessageContactsController(IMessageContactService service, IDataUnitOfWork unitOfWork, ILogger logger,
                                  IWorkflowAuthorizationService workflowAuthorizationService, ISecurity security, IDomainUserModelMessageContactModelMapper domainUserModelMessageContactModelMapper)
     : base(service, unitOfWork, logger, security)
 {
     _logger     = logger;
     _unitOfWork = unitOfWork;
     _workflowAuthorizationService = workflowAuthorizationService;
     _security = security;
     _domainUserModelMessageContactModelMapper = domainUserModelMessageContactModelMapper;
 }
 public WorkflowRoleMappingsController(IWorkflowRoleMappingService service, IDataUnitOfWork unitOfWork, ILogger logger, ISecurity security,
                                       IWorkflowRoleMappingCollaborationUserModelMapper mapperCollaborationUser, IDomainUserModelCollaborationSignModelMapper domainSignMapper,
                                       IDomainUserModelCollaborationUserModelMapper domainUserMapper, IWorkflowAuthorizationService workflowAuthorizationService)
     : base(service, unitOfWork, logger, security)
 {
     _logger     = logger;
     _unitOfWork = unitOfWork;
     _security   = security;
     _mapperCollaborationUser      = mapperCollaborationUser;
     _domainSignMapper             = domainSignMapper;
     _domainUserMapper             = domainUserMapper;
     _workflowAuthorizationService = workflowAuthorizationService;
 }