/// <summary>
 ///     Initializes a new instance of the <see cref="HighlightController" /> class
 /// </summary>
 /// <param name="highlightService">The highlight service which is used to communicate with the logic layer.</param>
 /// <param name="mapper">The mapper which is used to convert the resources to the models to resource results.</param>
 /// <param name="fileService">The file service which is used to communicate with the logic layer.</param>
 /// <param name="projectService">The project service which is used to communicate with the logic layer.</param>
 public HighlightController(IHighlightService highlightService, IMapper mapper, IFileService fileService, IProjectService projectService)
 {
     this.highlightService = highlightService;
     this.mapper           = mapper;
     this.fileService      = fileService;
     this.projectService   = projectService;
 }
Exemplo n.º 2
0
 public DerLayoutController(IDropdownService dropdownService, IDerService derService, IMeasurementService measurementService, IHighlightService highlightService, ISelectService selectService)
 {
     _dropdownService = dropdownService;
     _derService = derService;
     _measurementService = measurementService;
     _highlightService = highlightService;
     _selectService = selectService;
 }
Exemplo n.º 3
0
        public HighlightTagger(ITextView textView, ITextBuffer buffer, IHighlightService highlightService)
        {
            this.textView         = textView;
            this.Buffer           = buffer;
            this.highlightService = highlightService;

            var textDocument = buffer.Properties.GetProperty <ITextDocument>(typeof(ITextDocument));

            this.highlightService.RegisterTagger(this);
        }
Exemplo n.º 4
0
 public ArtifactController(IMeasurementService measurementService,
     IKpiService kpiService,
     IArtifactService artifactServcie,
     IHighlightService highlightService)
 {
     _measurementService = measurementService;
     _kpiService = kpiService;
     _artifactServie = artifactServcie;
     _highlightService = highlightService;
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="VisualStudioIdeServices"/> class.
        /// </summary>
        public VisualStudioIdeServices(EnvDTE80.DTE2 dte2, IHighlightService highlightService, Workspace workspace)
        {
            Contract.Requires <ArgumentNullException>(dte2 != null, nameof(dte2));
            Contract.Requires <ArgumentNullException>(workspace != null, nameof(workspace));
            Contract.Requires <ArgumentNullException>(highlightService != null, nameof(highlightService));

            this.dte2             = dte2;
            this.highlightService = highlightService;
            this.Workspace        = workspace;
        }
Exemplo n.º 6
0
 public DerController(IDerService derService, IDropdownService dropdownService, IArtifactService artifactService, IHighlightService highlightService, IWeatherService weatherService, IKpiAchievementService kpiAchievementService, IKpiTargetService kpiTargetService, IVesselScheduleService vesselScheduleService, IWaveService waveService)
 {
     _derService = derService;
     _dropdownService = dropdownService;
     _artifactService = artifactService;
     _highlightService = highlightService;
     _weatherService = weatherService;
     _kpiAchievementService = kpiAchievementService;
     _kpiTargetService = kpiTargetService;
     _vesselScheduleService = vesselScheduleService;
     _waveService = waveService;
 }
Exemplo n.º 7
0
 public HighlightController(IHighlightService highlightService,
     ISelectService selectService,
     INLSService nlsService,
     IVesselScheduleService vesselScheduleService,
     IWeatherService weatherService,
     IHighlightOrderService highlightOrderService,
     IHighlightGroupService highlightGroupService
     )
 {
     _highlightService = highlightService;
     _selectService = selectService;
     _nlsService = nlsService;
     _vesselScheduleService = vesselScheduleService;
     _waetherService = weatherService;
     _highlightOrderService = highlightOrderService;
     _highlightGroupService = highlightGroupService;
 }
Exemplo n.º 8
0
 public HighlightController(IHighlightService highlightService,
     ISelectService selectService,
     INLSService nlsService,
     IVesselScheduleService vesselScheduleService,
     IWeatherService weatherService,
     IHighlightOrderService highlightOrderService,
     IHighlightGroupService highlightGroupService
     )
 {
     _highlightService = highlightService;
     _selectService = selectService;
     _nlsService = nlsService;
     _vesselScheduleService = vesselScheduleService;
     _waetherService = weatherService;
     _highlightOrderService = highlightOrderService;
     _highlightGroupService = highlightGroupService;
 }
 public DerTransactionController(IDerService derService,
                                 IDerTransactionService derTransactionService,
                                 IKpiAchievementService kpiAchievementService,
                                 IKpiTargetService kpiTargetService,
                                 IHighlightService highlightService,
                                 ISelectService selectService,
                                 IWaveService waveService,
                                 IWeatherService weatherService,
                                 IDerLoadingScheduleService derLoadingScheduleService,
                                 IKpiTransformationService kpiTransformationService)
 {
     _derService                = derService;
     _derTransactionService     = derTransactionService;
     _kpiAchievementService     = kpiAchievementService;
     _kpiTargetService          = kpiTargetService;
     _highlightService          = highlightService;
     _selectService             = selectService;
     _waveService               = waveService;
     _weatherService            = weatherService;
     _derLoadingScheduleService = derLoadingScheduleService;
     _kpiTransformationService  = kpiTransformationService;
 }
Exemplo n.º 10
0
 public DerTransactionController(IDerService derService, 
     IDerTransactionService derTransactionService, 
     IKpiAchievementService kpiAchievementService, 
     IKpiTargetService kpiTargetService, 
     IHighlightService highlightService, 
     ISelectService selectService, 
     IWaveService waveService, 
     IWeatherService weatherService,
     IDerLoadingScheduleService derLoadingScheduleService,
     IKpiTransformationService kpiTransformationService)
 {
     _derService = derService;
     _derTransactionService = derTransactionService;
     _kpiAchievementService = kpiAchievementService;
     _kpiTargetService = kpiTargetService;
     _highlightService = highlightService;
     _selectService = selectService;
     _waveService = waveService;
     _weatherService = weatherService;
     _derLoadingScheduleService = derLoadingScheduleService;
     _kpiTransformationService = kpiTransformationService;
 }
Exemplo n.º 11
0
 public ArtifactCloneController(IArtifactService artifactService, IHighlightService highlightService)
 {
     _artifactService = artifactService;
     _highlightService = highlightService;
 }
Exemplo n.º 12
0
 public HighlightShapes(Work<WorkContext> workContext, IHighlightService highlightService)
 {
     _workContext = workContext;
     _highlightService = highlightService;
 }
Exemplo n.º 13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HighlightController"/> class
 /// </summary>
 /// <param name="highlightService">The highlight service which is used to communicate with the logic layer.</param>
 /// <param name="mapper">The mapper which is used to convert the resources to the models to resource results.</param>
 public HighlightController(IHighlightService highlightService, IMapper mapper)
 {
     this.highlightService = highlightService;
     this.mapper           = mapper;
 }
Exemplo n.º 14
0
 public ArtifactCloneController(IArtifactService artifactService, IHighlightService highlightService)
 {
     _artifactService  = artifactService;
     _highlightService = highlightService;
 }
Exemplo n.º 15
0
 public HighlightRepository(DataContext context, IHighlightService service)
 {
     _context = context;
     _service = service;
 }
 public DestinyController(IHighlightService highlightService, IOptions <AppSettings> appSettings)
 {
     _highlightService = highlightService;
     _appSettings      = appSettings.Value;
 }
Exemplo n.º 17
0
 public DerLayoutController(IDropdownService dropdownService, IDerService derService, IMeasurementService measurementService, IHighlightService highlightService, ISelectService selectService, IUserService userService)
 {
     _dropdownService    = dropdownService;
     _derService         = derService;
     _measurementService = measurementService;
     _selectService      = selectService;
     _userService        = userService;
 }