Ejemplo n.º 1
0
 public NotifyEventsAsyncCommandBus(IAsyncCommandBus innerAsyncCommandBus, ICommandEvents commandEvents)
 {
     if (innerAsyncCommandBus == null)
     {
         throw new ArgumentNullException("innerAsyncCommandBus");
     }
     if (commandEvents == null)
     {
         throw new ArgumentNullException("commandEvents");
     }
     _innerAsyncCommandBus = innerAsyncCommandBus;
     _commandEvents        = commandEvents;
 }
Ejemplo n.º 2
0
		public ViewModelServices(
			IRuleProvider ruleProvider,
			IObservableRegistrationService observableRegistration,
			IValidator validator,
			ISchedulers schedulers,
			INavigationService navigationService,
			IRequestNavigation requestNavigation,
			IAsyncCommandBus commandBus,
			IAsyncQueryBus queryBus,
			ICommandEvents commandEvents,
			ICommandStateEvents commandStateEvents,
			IQueryStateEvents queryStateEvents)
		{
			if (ruleProvider == null) throw new ArgumentNullException("ruleProvider");
			if (observableRegistration == null) throw new ArgumentNullException("observableRegistration");
			if (validator == null) throw new ArgumentNullException("validator");
			if (schedulers == null) throw new ArgumentNullException("schedulers");
			if (navigationService == null) throw new ArgumentNullException("navigationService");
			if (requestNavigation == null) throw new ArgumentNullException("requestNavigation");
			if (commandBus == null) throw new ArgumentNullException("commandBus");
			if (queryBus == null) throw new ArgumentNullException("queryBus");
			if (commandEvents == null) throw new ArgumentNullException("commandEvents");
			if (commandStateEvents == null) throw new ArgumentNullException("commandStateEvents");
			if (queryStateEvents == null) throw new ArgumentNullException("queryStateEvents");
			Schedulers = schedulers;
			Validator = validator;
			ObservableRegistration = observableRegistration;
			RuleProvider = ruleProvider;
			CommandStateEvents = commandStateEvents;
			QueryStateEvents = queryStateEvents;
			CommandEvents = commandEvents;
			QueryBus = queryBus;
			CommandBus = commandBus;
			RequestNavigation = requestNavigation;
			NavigationService = navigationService;
		}
Ejemplo n.º 3
0
 public ViewModelServices(
     IRuleProvider ruleProvider,
     IObservableRegistrationService observableRegistration,
     IValidator validator,
     ISchedulers schedulers,
     INavigationService navigationService,
     IRequestNavigation requestNavigation,
     IAsyncCommandBus commandBus,
     IAsyncQueryBus queryBus,
     ICommandEvents commandEvents,
     ICommandStateEvents commandStateEvents,
     IQueryStateEvents queryStateEvents)
 {
     if (ruleProvider == null)
     {
         throw new ArgumentNullException("ruleProvider");
     }
     if (observableRegistration == null)
     {
         throw new ArgumentNullException("observableRegistration");
     }
     if (validator == null)
     {
         throw new ArgumentNullException("validator");
     }
     if (schedulers == null)
     {
         throw new ArgumentNullException("schedulers");
     }
     if (navigationService == null)
     {
         throw new ArgumentNullException("navigationService");
     }
     if (requestNavigation == null)
     {
         throw new ArgumentNullException("requestNavigation");
     }
     if (commandBus == null)
     {
         throw new ArgumentNullException("commandBus");
     }
     if (queryBus == null)
     {
         throw new ArgumentNullException("queryBus");
     }
     if (commandEvents == null)
     {
         throw new ArgumentNullException("commandEvents");
     }
     if (commandStateEvents == null)
     {
         throw new ArgumentNullException("commandStateEvents");
     }
     if (queryStateEvents == null)
     {
         throw new ArgumentNullException("queryStateEvents");
     }
     Schedulers             = schedulers;
     Validator              = validator;
     ObservableRegistration = observableRegistration;
     RuleProvider           = ruleProvider;
     CommandStateEvents     = commandStateEvents;
     QueryStateEvents       = queryStateEvents;
     CommandEvents          = commandEvents;
     QueryBus          = queryBus;
     CommandBus        = commandBus;
     RequestNavigation = requestNavigation;
     NavigationService = navigationService;
 }