Ejemplo n.º 1
0
 public PmsSummaryController(IPmsSummaryService pmsSummaryService, IDropdownService dropdownService, IMeasurementService measurementService, IArtifactService artifactService)
 {
     _pmsSummaryService = pmsSummaryService;
     _dropdownService = dropdownService;
     _measurementService = measurementService;
     _artifactService = artifactService;
 }
Ejemplo n.º 2
0
 public PmsSummaryController(IPmsSummaryService pmsSummaryService, IDropdownService dropdownService, IMeasurementService measurementService, IArtifactService artifactService)
 {
     _pmsSummaryService  = pmsSummaryService;
     _dropdownService    = dropdownService;
     _measurementService = measurementService;
     _artifactService    = artifactService;
 }
Ejemplo n.º 3
0
 public ArtifactController(IMeasurementService measurementService,
     IKpiService kpiService,
     IArtifactService artifactServcie)
 {
     _measurementService = measurementService;
     _kpiService = kpiService;
     _artifactServie = artifactServcie;
 }
 public AbstractArtifactController(
     ApiSettings settings,
     ILogger <AbstractArtifactController> logger,
     ITransactionCoordinator transactionCoordinator,
     IArtifactService artifactService,
     IApiArtifactModelMapper artifactModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ArtifactService     = artifactService;
     this.ArtifactModelMapper = artifactModelMapper;
 }
Ejemplo n.º 5
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;
 }
Ejemplo n.º 6
0
 public ArtifactController(
     ApiSettings settings,
     ILogger <ArtifactController> logger,
     ITransactionCoordinator transactionCoordinator,
     IArtifactService artifactService,
     IApiArtifactModelMapper artifactModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            artifactService,
            artifactModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
Ejemplo n.º 7
0
 public TemplateController(IArtifactService artifactService, ITemplateService templateService)
 {
     _artifactService = artifactService;
     _templateService = templateService;
 }
Ejemplo n.º 8
0
 public ArtifactCloneController(IArtifactService artifactService, IHighlightService highlightService)
 {
     _artifactService = artifactService;
     _highlightService = highlightService;
 }
Ejemplo n.º 9
0
 public TemplateController(IArtifactService artifactService, ITemplateService templateService, ISelectService selectService)
 {
     _artifactService = artifactService;
     _templateService = templateService;
     _selectService   = selectService;
 }
Ejemplo n.º 10
0
 public ArtifactController(IArtifactService artifactService)
 {
     _artifactService = artifactService;
 }
Ejemplo n.º 11
0
 public ArtifactController(IBlobManager blobManager, IArtifactService artifactService)
 {
     _blobManager     = blobManager;
     _artifactService = artifactService;
 }
Ejemplo n.º 12
0
 public ArtifactController(IBlobManager blobManager, IArtifactService artifactService, IHostingEnvironment env)
 {
     _blobManager       = blobManager;
     _artifactService   = artifactService;
     hostingEnvironment = env ?? throw new ArgumentNullException(nameof(env));
 }
Ejemplo n.º 13
0
 public ArtifactsController(IArtifactService artifactService,
                            AbstractValidator <ArtifactCriteriaModel> criteriaValidator)
 {
     _artifactService   = artifactService;
     _criteriaValidator = criteriaValidator;
 }
Ejemplo n.º 14
0
 public ArtifactCloneController(IArtifactService artifactService, IHighlightService highlightService)
 {
     _artifactService  = artifactService;
     _highlightService = highlightService;
 }