Exemplo n.º 1
0
 protected override void RecreateLazyDependenciesForLogout()
 {
     base.RecreateLazyDependenciesForLogout();
     WidgetsService?.Dispose();
     widgetsService = new Lazy <IWidgetsService>(CreateWidgetsService);
 }
Exemplo n.º 2
0
 public WidgetVariationsController(WidgetsService widgetsService, UnitOfWork unitOfWorkService)
 {
     _widgetsService = widgetsService;
     _unitOfWork     = unitOfWorkService;
 }
Exemplo n.º 3
0
            public async void StartsTheWidgetsService()
            {
                await ViewModel.Initialize();

                WidgetsService.Received().Start();
            }