Exemplo n.º 1
0
 public DataFlow(IDataFlowRepository dataFlowRepository,
                 IMessagingQueueManager messagingQueueManager,
                 IConsentRepository consentRepository,
                 IHealthInformationRepository healthInformationRepository,
                 IOptions <DataFlowConfiguration> dataFlowConfiguration,
                 ILogger <DataFlow> logger)
 {
     this.dataFlowRepository          = dataFlowRepository;
     this.messagingQueueManager       = messagingQueueManager;
     this.consentRepository           = consentRepository;
     this.healthInformationRepository = healthInformationRepository;
     this.dataFlowConfiguration       = dataFlowConfiguration;
     this.logger = logger;
 }
 public OrderController(IOrderService orderService, IMessagingQueueManager messagingQueueManager)
 {
     _orderService          = orderService;
     _messagingQueueManager = messagingQueueManager;
 }