Exemplo n.º 1
0
 public DatabaseAppInitializer(IDbContextFactory contextFactory, ICallScopeFactory callScopeFactory)
 {
     Guard.NotNull(callScopeFactory, nameof(callScopeFactory));
     Guard.NotNull(contextFactory, nameof(contextFactory));
     this.contextFactory   = contextFactory;
     this.callScopeFactory = callScopeFactory;
 }
Exemplo n.º 2
0
 public CreateOrderMenuComponent(
     IEventAggregator eventAggregator,
     IWindowFactory windowFactory,
     ICallScopeFactory callScopeFactory)
     : base(eventAggregator, windowFactory, callScopeFactory)
 {
 }
Exemplo n.º 3
0
 public MessagePipeLine(
     IMessageHandlerFiltersFactory messageHandlerFactory,
     ICallScopeFactory callScopeFactory)
 {
     Guard.NotNull(callScopeFactory, nameof(callScopeFactory));
     Guard.NotNull(messageHandlerFactory, nameof(messageHandlerFactory));
     this.messageHandlerFactory = messageHandlerFactory;
     this.callScopeFactory      = callScopeFactory;
 }
Exemplo n.º 4
0
 public DialogService(IWindowManager windowManager, IWindowFactory windowFactory, ICallScopeFactory callScopeFactory)
 {
     Guard.NotNull(callScopeFactory, nameof(callScopeFactory));
     Guard.NotNull(windowManager, nameof(windowManager));
     Guard.NotNull(windowFactory, nameof(windowFactory));
     this.windowManager    = windowManager;
     this.windowFactory    = windowFactory;
     this.callScopeFactory = callScopeFactory;
 }
Exemplo n.º 5
0
        protected MenuComponent(IEventAggregator eventAggregator, IWindowFactory windowFactory, ICallScopeFactory callScopeFactory)
        {
            Guard.NotNull(callScopeFactory, nameof(callScopeFactory));
            Guard.NotNull(eventAggregator, nameof(eventAggregator));
            Guard.NotNull(windowFactory, nameof(windowFactory));

            this.eventAggregator  = eventAggregator;
            this.windowFactory    = windowFactory;
            this.callScopeFactory = callScopeFactory;
        }
Exemplo n.º 6
0
 public CustomerBalanceReviewComponent(IEventAggregator eventAggregator, IWindowFactory windowFactory, ICallScopeFactory callScopeFactory)
     : base(eventAggregator, windowFactory, callScopeFactory)
 {
 }