public WorkflowProcessLogic(IWorkflowProcessRepository processRepository,
                             IWorkflowProcessActivityRepository activityRepository,
                             IWorkflowProcessLineRepository lineRepository,
                             IWorkflowProcessAreasLogic areasLogic,
                             ISystemDictionaryMongoDbRepository dictionaryMongoDbRepository)
     : base(processRepository)
 {
     _processRepository           = processRepository;
     _activityRepository          = activityRepository;
     _lineRepository              = lineRepository;
     _areasLogic                  = areasLogic;
     _dictionaryMongoDbRepository = dictionaryMongoDbRepository;
 }
 public SystemDictionaryLogic(ISystemDictionaryRepository dictionaryRepository, ISystemDictionaryMongoDbRepository dictionaryMongoDbRepository)
     : base(dictionaryRepository)
 {
     _dictionaryRepository        = dictionaryRepository;
     _dictionaryMongoDbRepository = dictionaryMongoDbRepository;
 }