Exemplo n.º 1
0
 public XMLRepository(
     IEntityQuery entityQuery,
     IVETSEntityManagerView entityManagerView,
     IEntityCreate entityCreate,
     ITestExecution testExecution,
     ITestStatus testStatus,
     ITestEvents testEvents,
     ISystemLogManager logger,
     IReportService resportService,
     IApplication application,
     IVETSEntityManagerViewModelView entityManagerViewModelView,
     VTS vts
     )
 {
     _entityQuery       = entityQuery;
     _entityManagerView = entityManagerView;
     _entityCreate      = entityCreate;
     _testExecution     = testExecution;
     _testStatus        = testStatus;
     _testEvents        = testEvents;
     _logger            = logger;
     _resportService    = resportService;
     _vts         = vts;
     _application = application;
     _entityManagerViewModelView = entityManagerViewModelView;
 }
Exemplo n.º 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;
 }