コード例 #1
0
ファイル: GISReportService.cs プロジェクト: nemesv/ASTRA.EMSG
 public RequestWorker(int order, WMSParamBase parameters, ICreateWMSRequest createWMSRequest, HttpContext current, WMSRequestType type)
 {
     this.order            = order;
     this.parameters       = parameters;
     this.createWMSRequest = createWMSRequest;
     this.current          = current;
     this.type             = type;
     this.exception        = null;
 }
コード例 #2
0
ファイル: GISReportService.cs プロジェクト: nemesv/ASTRA.EMSG
 public GISReportService(
     ICreateWMSRequest createWmsRequest,
     IServerPathProvider serverPathProvider,
     ILocalizationService localizationService,
     ILegendService legendService)
 {
     createWMSRequest         = createWmsRequest;
     this.serverPathProvider  = serverPathProvider;
     this.localizationService = localizationService;
     this.legendService       = legendService;
 }
コード例 #3
0
ファイル: WMSController.cs プロジェクト: nemesv/ASTRA.EMSG
 public WMSController(ISecurityService securityService,
                      IAchsenSegmentService achsenSegmentService,
                      ICreateWMSRequest createWMSRequest,
                      ILegendService legendService,
                      IServerConfigurationProvider serverConfigurationProvider)
 {
     this.securityService             = securityService;
     this.achsenSegmentService        = achsenSegmentService;
     this.createWMSRequest            = createWMSRequest;
     this.legendService               = legendService;
     this.serverConfigurationProvider = serverConfigurationProvider;
 }