public UpdateSystemStateTestStart
        (
            IStarsApplication starsApplication,
            ILocalResourceSupport localResourceSupport,
            ITestStatus testStatus,
            IEntityQuery entityQuery,
            IVETSEntityManagerView entityManagerView,
            IDialogService dialogService,
            ISystemLogManager systemLogManager

        )
        {
            _starsApplication     = starsApplication;
            _localResourceSupport = localResourceSupport;
            _testStatus           = testStatus;
            _entityQuery          = entityQuery;
            _entityManagerView    = entityManagerView;
            _dialogService        = dialogService;
            _systemLogManager     = systemLogManager;
        }
Exemple #2
0
 public MEF
 (
     ISystemLogManager logger,
     IApplication application,
     IEntityQuery entityQuery,
     IEntityCreate entityCreate,
     ILiveResource liveResources,
     IProvideValues provideValues,
     IDialogService dialogService,
     IStarsApplication starsApplication,
     IVETSEntityManagerView entityManagerView
 )
 {
     Logger            = logger;
     Application       = application;
     EntityQuery       = entityQuery;
     EntityCreate      = entityCreate;
     LiveResources     = liveResources;
     ProvideValues     = provideValues;
     DialogService     = dialogService;
     StarsApplication  = starsApplication;
     EntityManagerView = entityManagerView;
 }