Example #1
0
 public Factory(Navigation.IService navigationService, Data.IProvider dataProvider, Event.IBus eventBus, Platform.ISchedulers platformSchedulers)
 {
     _navigationService  = navigationService;
     _dataProvider       = dataProvider;
     _eventBus           = eventBus;
     _platformSchedulers = platformSchedulers;
 }
Example #2
0
 public State(Navigation.IService navigationService, Data.IProvider dataProvider, Lensman.Event.IBus eventBus, Platform.ISchedulers schedulers, Guid userId)
 {
     _navigationService = navigationService;
     _eventBus          = eventBus;
     _dataProvider      = dataProvider;
     _schedulers        = schedulers;
     _userId            = userId;
 }
Example #3
0
 public State(Navigation.IService navigationService)
 {
     _navigationService = navigationService;
 }
Example #4
0
 public Initializing(Navigation.IService navigationService)
 {
     _navigationService = navigationService;
 }
Example #5
0
 public State(Navigation.IService navigationService, Lensman.Event.IBus eventBus)
 {
     _navigationService = navigationService;
     _eventBus          = eventBus;
 }
Example #6
0
 public NavigationCommand(Func <T> createViewModel, Func <bool> canExecute, Navigation.IService service = null)
     : this(createViewModel, service)
 {
     m_canExecute = canExecute;
 }
Example #7
0
 public NavigationCommand(Func <T> createViewModel, Navigation.IService service = null)
 {
     Contract.AssertNotNull(() => createViewModel, createViewModel);
     m_createViewModel = createViewModel;
     m_service         = service;
 }