コード例 #1
0
 public QueueController(IQueueService service, IValidatorService validationService, IQueueRuleset ruleset, ILogger logger, ICQRSMessageMapper mapper)
     : base()
 {
     _service           = service;
     _validationService = validationService;
     _ruleset           = ruleset;
     _logger            = logger;
     _mapper            = mapper;
 }
コード例 #2
0
 public CategoryFascicleController(ICategoryFascicleService service, IDataUnitOfWork unitOfWork, ILogger logger, ICurrentIdentity currentIdentity, IQueueService queueService,
                                   ICQRSMessageMapper cqrsMapper, IParameterEnvService parameterEnvService)
     : base(service, unitOfWork, logger)
 {
     _currentIdentity     = currentIdentity;
     _queueService        = queueService;
     _cqrsMapper          = cqrsMapper;
     _parameterEnvService = parameterEnvService;
     _unitOfWork          = unitOfWork;
 }
コード例 #3
0
 public DocumentSeriesItemController(IDocumentSeriesItemService service, IDataUnitOfWork unitOfWork, ILogger logger, ICurrentIdentity currentIdentity, IQueueService queueService,
                                     ICQRSMessageMapper cqrsSMapper, IParameterEnvService parameterEnvService)
     : base(service, unitOfWork, logger)
 {
     _unitOfWork               = unitOfWork;
     _logger                   = logger;
     _service_queue            = queueService;
     _mapper_cqrsMessageMapper = cqrsSMapper;
     _parameterEnvService      = parameterEnvService;
     _currentIdentity          = currentIdentity;
 }
コード例 #4
0
 public ProtocolController(IProtocolService service, IDataUnitOfWork unitOfWork, ILogger logger, ICurrentIdentity currentIdentity, IQueueService queueService,
                           ICQRSMessageMapper cqrsMapper, IParameterEnvService parameterEnvService)
     : base(service, unitOfWork, logger)
 {
     _unitOfWork          = unitOfWork;
     _logger              = logger;
     _queueService        = queueService;
     _cqrsMapper          = cqrsMapper;
     _parameterEnvService = parameterEnvService;
     _currentIdentity     = currentIdentity;
     PostIsolationLevel   = IsolationLevel.Serializable;
 }
コード例 #5
0
 public ResolutionController(IResolutionService service, IDataUnitOfWork unitOfWork, ILogger logger, ICurrentIdentity currentIdentity, IQueueService queueService,
                             ICQRSMessageMapper cqrsMapper, IResolutionModelMapper mapper, IParameterEnvService parameterEnvService)
     : base(service, unitOfWork, logger)
 {
     _unitOfWork          = unitOfWork;
     _logger              = logger;
     _queueService        = queueService;
     _cqrsMapper          = cqrsMapper;
     _currentIdentity     = currentIdentity;
     _mapper              = mapper;
     _parameterEnvService = parameterEnvService;
 }
コード例 #6
0
 public TokenSecuritiesController(ILogger logger, ITopicService topicService, IParameterEnvService parameterEnvService,
                                  IDataUnitOfWork unitOfWork, ICQRSMessageMapper cqrsMapper, IMessageConfiguration messageConfiguration)
     : base()
 {
     _logger               = logger;
     _topicService         = topicService;
     _parameterEnvService  = parameterEnvService;
     _instanceId           = Guid.NewGuid();
     _unitOfWork           = unitOfWork;
     _cqrsMapper           = cqrsMapper;
     _messageConfiguration = messageConfiguration;
 }
コード例 #7
0
 public CollaborationController(ICollaborationService service, IDataUnitOfWork unitOfWork, ILogger logger, ICurrentIdentity currentIdentity,
                                IQueueService queueService, ICQRSMessageMapper cqrsMapper, IParameterEnvService parameterEnvService)
     : base(service, unitOfWork, logger)
 {
     _unitOfWork          = unitOfWork;
     _logger              = logger;
     _queueService        = queueService;
     _cqrsMapper          = cqrsMapper;
     _parameterEnvService = parameterEnvService;
     _currentIdentity     = currentIdentity;
     PostIsolationLevel   = IsolationLevel.ReadCommitted;
 }
コード例 #8
0
 public FascicleDocumentUnitController(IFascicleDocumentUnitService service, IDataUnitOfWork unitOfWork, ILogger logger,
                                       ICurrentIdentity currentIdentity, IQueueService queueService, ICQRSMessageMapper CQRSMapper, IResolutionModelMapper mapper,
                                       IMapperUnitOfWork mapperUnitOfWork, IParameterEnvService parameterEnvService)
     : base(service, unitOfWork, logger)
 {
     _unitOfWork          = unitOfWork;
     _currentIdentity     = currentIdentity;
     _cqrsMapper          = CQRSMapper;
     _queueService        = queueService;
     _logger              = logger;
     _mapper              = mapper;
     _mapperUnitOfwork    = mapperUnitOfWork;
     _parameterEnvService = parameterEnvService;
 }
コード例 #9
0
 public DossierController(IDossierService service, IDataUnitOfWork unitOfWork,
                          ILogger logger,
                          ICurrentIdentity currentIdentity,
                          IParameterEnvService parameterEnvService,
                          ICQRSMessageMapper CQRSMapper,
                          IQueueService queueService)
     : base(service, unitOfWork, logger)
 {
     _unitOfWork          = unitOfWork;
     _currentIdentity     = currentIdentity;
     _parameterEnvService = parameterEnvService;
     _cqrsMapper          = CQRSMapper;
     _queueService        = queueService;
     _logger = logger;
 }
コード例 #10
0
 public WorkflowStartService(ILogger logger, IWorkflowInstanceService workflowInstanceService, IWorkflowArgumentMapper workflowArgumentMapper,
                             IWorkflowInstanceRoleService workflowInstanceRoleService, IWorkflowActivityService workflowActivityService,
                             ITopicService topicServiceBus, ICQRSMessageMapper mapper_eventServiceBusMessage,
                             IDataUnitOfWork unitOfWork, StorageDocument.IDocumentContext <ModelDocument.Document, ModelDocument.ArchiveDocument> documentService,
                             ICollaborationService collaborationService, ISecurity security, IParameterEnvService parameterEnvService, IFascicleRoleService fascicleRoleService,
                             IMessageService messageService, IDossierRoleService dossierRoleService, IQueueService queueService, IWordOpenXmlDocumentGenerator wordOpenXmlDocumentGenerator,
                             IMessageConfiguration messageConfiguration, IProtocolLogService protocolLogService, IPDFDocumentGenerator pdfDocumentGenerator,
                             IFascicleService fascicleService, IFascicleDocumentService fascicleDocumentService, IFascicleFolderService fascicleFolderService,
                             IFascicleDocumentUnitService fascDocumentUnitService, IFascicleLinkService fascicleLinkService)
     : base(logger, workflowInstanceService, workflowInstanceRoleService, workflowActivityService, topicServiceBus, mapper_eventServiceBusMessage,
            unitOfWork, documentService, collaborationService, security, parameterEnvService, fascicleRoleService, messageService, dossierRoleService, queueService,
            wordOpenXmlDocumentGenerator, messageConfiguration, protocolLogService, pdfDocumentGenerator, fascicleService, fascicleDocumentService, fascicleFolderService,
            fascDocumentUnitService, fascicleLinkService)
 {
     _unitOfWork = unitOfWork;
     _workflowInstanceService = workflowInstanceService;
     _workflowArgumentMapper  = workflowArgumentMapper;
     _documentService         = documentService;
 }