프로젝트

일반

사용자정보

개정판 72862ad1

ID72862ad18e7861c34926b376148bc135914ac990
상위 59a29a3b
하위 9b2f01e1

semi 이(가) 4년 이상 전에 추가함

wcf 구축 & filter수정

Change-Id: I6eda4ba04c1bf2676896831edff71c0c8dc328da

차이점 보기:

ConvertService/ServiceBase/Markus.Service.StationController/Markus.Service.StationController.csproj
17 17
    <NuGetPackageImportStamp>
18 18
    </NuGetPackageImportStamp>
19 19
    <TargetFrameworkProfile />
20
    <PublishUrl>publish\</PublishUrl>
20
    <IsWebBootstrapper>true</IsWebBootstrapper>
21
    <PublishUrl>C:\inetpub\wwwroot\</PublishUrl>
21 22
    <Install>true</Install>
22
    <InstallFrom>Disk</InstallFrom>
23
    <UpdateEnabled>false</UpdateEnabled>
23
    <InstallFrom>Web</InstallFrom>
24
    <UpdateEnabled>true</UpdateEnabled>
24 25
    <UpdateMode>Foreground</UpdateMode>
25 26
    <UpdateInterval>7</UpdateInterval>
26 27
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
27 28
    <UpdatePeriodically>false</UpdatePeriodically>
28 29
    <UpdateRequired>false</UpdateRequired>
29 30
    <MapFileExtensions>true</MapFileExtensions>
30
    <ApplicationRevision>0</ApplicationRevision>
31
    <InstallUrl>http://localhost:55508/DataService.svc/</InstallUrl>
32
    <CreateWebPageOnPublish>true</CreateWebPageOnPublish>
33
    <WebPage>publish.htm</WebPage>
34
    <ApplicationRevision>2</ApplicationRevision>
31 35
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
32
    <IsWebBootstrapper>false</IsWebBootstrapper>
33 36
    <UseApplicationTrust>false</UseApplicationTrust>
37
    <PublishWizardCompleted>true</PublishWizardCompleted>
34 38
    <BootstrapperEnabled>true</BootstrapperEnabled>
35 39
  </PropertyGroup>
36 40
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
......
59 63
    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
60 64
  </PropertyGroup>
61 65
  <PropertyGroup />
66
  <PropertyGroup>
67
    <ManifestCertificateThumbprint>827246A40FD08C8A7B1866D67FB2181CB36B60A4</ManifestCertificateThumbprint>
68
  </PropertyGroup>
69
  <PropertyGroup>
70
    <ManifestKeyFile>Markus.Service.StationController_TemporaryKey.pfx</ManifestKeyFile>
71
  </PropertyGroup>
72
  <PropertyGroup>
73
    <GenerateManifests>true</GenerateManifests>
74
  </PropertyGroup>
75
  <PropertyGroup>
76
    <SignManifests>true</SignManifests>
77
  </PropertyGroup>
62 78
  <ItemGroup>
63 79
    <Reference Include="ConfigParser, Version=0.3.3.6, Culture=neutral, processorArchitecture=MSIL">
64 80
      <HintPath>..\packages\Salaros.ConfigParser.0.3.3\lib\net45\ConfigParser.dll</HintPath>
......
375 391
    <None Include="Connected Services\ServiceReference1\Markus.Service.StationController.ServiceReference1.SELECT_RUN_PROJECTS_Result.datasource">
376 392
      <DependentUpon>Reference.svcmap</DependentUpon>
377 393
    </None>
394
    <None Include="Markus.Service.StationController_TemporaryKey.pfx" />
378 395
    <None Include="packages.config" />
379 396
    <None Include="Properties\Settings.settings">
380 397
      <Generator>SettingsSingleFileGenerator</Generator>
......
385 402
    </None>
386 403
  </ItemGroup>
387 404
  <ItemGroup>
388
    <None Include="App.config" />
405
    <None Include="App.config">
406
      <SubType>Designer</SubType>
407
    </None>
389 408
  </ItemGroup>
390 409
  <ItemGroup>
391 410
    <WCFMetadata Include="Connected Services\" />
ConvertService/ServiceBase/Markus.Service.StationController/ViewModel/DataBaseItemsModel.cs
643 643
            await Task.Delay(5000);
644 644
            //await Task.Delay(10000);
645 645

  
646
            //System.Threading.Thread.Sleep(new TimeSpan(0,0,0,0,100));
646
            System.Threading.Thread.Sleep(new TimeSpan(0, 0, 0, 0, 100));
647 647

  
648 648
            dispatcherTimer.Start();
649 649
        }
......
1261 1261
        {
1262 1262
            dispatcherTimer.Tick -= new EventHandler(Timer_Tick);
1263 1263
            dispatcherTimer.Tick += new EventHandler(SearchTimer_Tick);
1264
            //DataSearch(new[] { (StatusCodeType)(SelectedStatus.Value) }, FilterConvertSource);
1264 1265
        }
1265 1266

  
1266 1267
        #endregion
ConvertService/ServiceBase/Markus.Service.StationController/ViewModel/FinalPDFViewModel.cs
810 810
                    _status = (int)SelectedStatus.Value;
811 811
                }
812 812

  
813
                if (ProjectNames.Count() == 0)
814
                {
815
                    ProjectName Clear = new ProjectName("Clear", "Clear");
816
                    ProjectNames.Add(Clear);
817
                    foreach (var x in await WcfClient.GET_SELECT_RUN_PROJECTSAsync(0))
818
                    {
819
                        ProjectName projectName = new ProjectName(x.PROJECT_NO, x.PROJECT_NAME);
820
                        ProjectNames.Add(projectName);
821
                    }
822
                }
823

  
813 824
                var Listitems = from x in await WcfClient.GET_SELECT_FINAL_PDF_ITEMAsync(null, null, null, null, null, null, null, null, _status, SelectedCount.ValueMember, null, null, null, null, null, null, null, null, null, null)
814 825
                                let MarkusLink = "kcom://" + CreateMarkusParam(x.ID, x.DOCUMENT_ID, "doftech")
815 826
                                select new FinalPDF(x.ID, x.PROJECT_NO, x.STATUS, x.DOCUMENT_ID, x.MARKUPINFO_ID, x.DOCINFO_ID, x.DOCUMENT_NAME, x.DOCUMENT_NO, x.CREATE_USER_ID,
......
904 915
                    Finish_CreateTime = SelectedCreateTimeEnd;
905 916
                }
906 917

  
918
                if (ProjectNames.Count() == 0)
919
                {
920
                    foreach (var x in await WcfClient.GET_SELECT_RUN_PROJECTSAsync(0))
921
                    {
922
                        ProjectName projectName = new ProjectName(x.PROJECT_NO, x.PROJECT_NAME);
923
                        ProjectNames.Add(projectName);
924
                    }
925
                }
926

  
907 927
                var Listitems = from x in await WcfClient.GET_SELECT_FINAL_PDF_ITEMAsync(null, ProjectNumberFilter.Project_NO, DocumentIDFilter, MarkupInfo_IDFilter, DOCINFO_IDFilter, Document_NameFilter, Document_NOFilter,
908 928
                    CreateUser_IDFilter, _status, SelectedCount.ValueMember, GROUP_NOFilter, REVISIONFilter, Start_CreateTime, Finish_CreateTime, null, null, null, null, Document_URLFilter, ExcptionCheck)
909 929
                                let MarkusLink = "kcom://" + CreateMarkusParam(x.ID, x.DOCUMENT_ID, "doftech")
......
1351 1371
        public void DataFilter(object obj)
1352 1372
        {
1353 1373
            dispatcherTimer.Tick -= new EventHandler(Timer_Tick);
1354
            DataSearch(new[] { (StatusCodeType)(SelectedStatus.Value) }, FilterConvertSource);
1374
            dispatcherTimer.Tick += new EventHandler(SearchTimer_Tick);
1375
            //DataSearch(new[] { (StatusCodeType)(SelectedStatus.Value) }, FilterConvertSource);
1355 1376
        }
1356 1377

  
1357 1378
        #endregion
ConvertService/ServiceBase/Markus.Service.WcfClient/App.config
8 8
            <basicHttpBinding>
9 9
                <binding name="BasicHttpBinding_IStationService" />
10 10
                <binding name="BasicHttpBinding_IStationService1" />
11
                <binding name="BasicHttpBinding_IDataService" />
11 12
            </basicHttpBinding>
12 13
        </bindings>
13 14
        <client>
......
17 18
            <endpoint address="http://localhost:9111/StationService" binding="basicHttpBinding"
18 19
                bindingConfiguration="BasicHttpBinding_IStationService1" contract="StationServiceAsync.IStationService"
19 20
                name="BasicHttpBinding_IStationService1" />
21
            <endpoint address="http://localhost:55508/DataService.svc" binding="basicHttpBinding"
22
                bindingConfiguration="BasicHttpBinding_IDataService" contract="ServiceReference1.IDataService"
23
                name="BasicHttpBinding_IDataService" />
20 24
        </client>
21 25
    </system.serviceModel>
22 26
</configuration>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/DataService.disco
1
<?xml version="1.0" encoding="utf-8"?>
2
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
3
  <contractRef ref="http://localhost:55508/DataService.svc?wsdl" docRef="http://localhost:55508/DataService.svc" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
4
</discovery>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/DataService.wsdl
1
<?xml version="1.0" encoding="utf-8"?>
2
<wsdl:definitions xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:tns="http://tempuri.org/" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="DataService" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
3
  <wsdl:types>
4
    <xsd:schema targetNamespace="http://tempuri.org/Imports">
5
      <xsd:import schemaLocation="http://localhost:55508/DataService.svc?xsd=xsd0" namespace="http://tempuri.org/" />
6
      <xsd:import schemaLocation="http://localhost:55508/DataService.svc?xsd=xsd1" namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
7
      <xsd:import schemaLocation="http://localhost:55508/DataService.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/StationControllerService" />
8
    </xsd:schema>
9
  </wsdl:types>
10
  <wsdl:message name="IDataService_GET_SELECT_CONVERT_ITEM_InputMessage">
11
    <wsdl:part name="parameters" element="tns:GET_SELECT_CONVERT_ITEM" />
12
  </wsdl:message>
13
  <wsdl:message name="IDataService_GET_SELECT_CONVERT_ITEM_OutputMessage">
14
    <wsdl:part name="parameters" element="tns:GET_SELECT_CONVERT_ITEMResponse" />
15
  </wsdl:message>
16
  <wsdl:message name="IDataService_GET_SELECT_RERECONVERT_ITEM_InputMessage">
17
    <wsdl:part name="parameters" element="tns:GET_SELECT_RERECONVERT_ITEM" />
18
  </wsdl:message>
19
  <wsdl:message name="IDataService_GET_SELECT_RERECONVERT_ITEM_OutputMessage">
20
    <wsdl:part name="parameters" element="tns:GET_SELECT_RERECONVERT_ITEMResponse" />
21
  </wsdl:message>
22
  <wsdl:message name="IDataService_GET_SELECT_CONVERT_DELETE_InputMessage">
23
    <wsdl:part name="parameters" element="tns:GET_SELECT_CONVERT_DELETE" />
24
  </wsdl:message>
25
  <wsdl:message name="IDataService_GET_SELECT_CONVERT_DELETE_OutputMessage">
26
    <wsdl:part name="parameters" element="tns:GET_SELECT_CONVERT_DELETEResponse" />
27
  </wsdl:message>
28
  <wsdl:message name="IDataService_GET_SELECT_RUN_PROJECTS_InputMessage">
29
    <wsdl:part name="parameters" element="tns:GET_SELECT_RUN_PROJECTS" />
30
  </wsdl:message>
31
  <wsdl:message name="IDataService_GET_SELECT_RUN_PROJECTS_OutputMessage">
32
    <wsdl:part name="parameters" element="tns:GET_SELECT_RUN_PROJECTSResponse" />
33
  </wsdl:message>
34
  <wsdl:message name="IDataService_GET_SELECT_CONVERT_INSERT_InputMessage">
35
    <wsdl:part name="parameters" element="tns:GET_SELECT_CONVERT_INSERT" />
36
  </wsdl:message>
37
  <wsdl:message name="IDataService_GET_SELECT_CONVERT_INSERT_OutputMessage">
38
    <wsdl:part name="parameters" element="tns:GET_SELECT_CONVERT_INSERTResponse" />
39
  </wsdl:message>
40
  <wsdl:message name="IDataService_GET_SELECT_FINAL_PDF_ITEM_InputMessage">
41
    <wsdl:part name="parameters" element="tns:GET_SELECT_FINAL_PDF_ITEM" />
42
  </wsdl:message>
43
  <wsdl:message name="IDataService_GET_SELECT_FINAL_PDF_ITEM_OutputMessage">
44
    <wsdl:part name="parameters" element="tns:GET_SELECT_FINAL_PDF_ITEMResponse" />
45
  </wsdl:message>
46
  <wsdl:message name="IDataService_GET_SELECT_FINAL_PDF_DELETE_InputMessage">
47
    <wsdl:part name="parameters" element="tns:GET_SELECT_FINAL_PDF_DELETE" />
48
  </wsdl:message>
49
  <wsdl:message name="IDataService_GET_SELECT_FINAL_PDF_DELETE_OutputMessage">
50
    <wsdl:part name="parameters" element="tns:GET_SELECT_FINAL_PDF_DELETEResponse" />
51
  </wsdl:message>
52
  <wsdl:message name="IDataService_GET_SELECT_FINAL_PDF_INSERT_InputMessage">
53
    <wsdl:part name="parameters" element="tns:GET_SELECT_FINAL_PDF_INSERT" />
54
  </wsdl:message>
55
  <wsdl:message name="IDataService_GET_SELECT_FINAL_PDF_INSERT_OutputMessage">
56
    <wsdl:part name="parameters" element="tns:GET_SELECT_FINAL_PDF_INSERTResponse" />
57
  </wsdl:message>
58
  <wsdl:message name="IDataService_GET_FINALPDF_COUNT_InputMessage">
59
    <wsdl:part name="parameters" element="tns:GET_FINALPDF_COUNT" />
60
  </wsdl:message>
61
  <wsdl:message name="IDataService_GET_FINALPDF_COUNT_OutputMessage">
62
    <wsdl:part name="parameters" element="tns:GET_FINALPDF_COUNTResponse" />
63
  </wsdl:message>
64
  <wsdl:message name="IDataService_GET_CONVERT_COUNT_InputMessage">
65
    <wsdl:part name="parameters" element="tns:GET_CONVERT_COUNT" />
66
  </wsdl:message>
67
  <wsdl:message name="IDataService_GET_CONVERT_COUNT_OutputMessage">
68
    <wsdl:part name="parameters" element="tns:GET_CONVERT_COUNTResponse" />
69
  </wsdl:message>
70
  <wsdl:portType name="IDataService">
71
    <wsdl:operation name="GET_SELECT_CONVERT_ITEM">
72
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_CONVERT_ITEM" message="tns:IDataService_GET_SELECT_CONVERT_ITEM_InputMessage" />
73
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_CONVERT_ITEMResponse" message="tns:IDataService_GET_SELECT_CONVERT_ITEM_OutputMessage" />
74
    </wsdl:operation>
75
    <wsdl:operation name="GET_SELECT_RERECONVERT_ITEM">
76
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_RERECONVERT_ITEM" message="tns:IDataService_GET_SELECT_RERECONVERT_ITEM_InputMessage" />
77
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_RERECONVERT_ITEMResponse" message="tns:IDataService_GET_SELECT_RERECONVERT_ITEM_OutputMessage" />
78
    </wsdl:operation>
79
    <wsdl:operation name="GET_SELECT_CONVERT_DELETE">
80
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_CONVERT_DELETE" message="tns:IDataService_GET_SELECT_CONVERT_DELETE_InputMessage" />
81
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_CONVERT_DELETEResponse" message="tns:IDataService_GET_SELECT_CONVERT_DELETE_OutputMessage" />
82
    </wsdl:operation>
83
    <wsdl:operation name="GET_SELECT_RUN_PROJECTS">
84
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_RUN_PROJECTS" message="tns:IDataService_GET_SELECT_RUN_PROJECTS_InputMessage" />
85
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_RUN_PROJECTSResponse" message="tns:IDataService_GET_SELECT_RUN_PROJECTS_OutputMessage" />
86
    </wsdl:operation>
87
    <wsdl:operation name="GET_SELECT_CONVERT_INSERT">
88
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_CONVERT_INSERT" message="tns:IDataService_GET_SELECT_CONVERT_INSERT_InputMessage" />
89
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_CONVERT_INSERTResponse" message="tns:IDataService_GET_SELECT_CONVERT_INSERT_OutputMessage" />
90
    </wsdl:operation>
91
    <wsdl:operation name="GET_SELECT_FINAL_PDF_ITEM">
92
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_ITEM" message="tns:IDataService_GET_SELECT_FINAL_PDF_ITEM_InputMessage" />
93
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_ITEMResponse" message="tns:IDataService_GET_SELECT_FINAL_PDF_ITEM_OutputMessage" />
94
    </wsdl:operation>
95
    <wsdl:operation name="GET_SELECT_FINAL_PDF_DELETE">
96
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_DELETE" message="tns:IDataService_GET_SELECT_FINAL_PDF_DELETE_InputMessage" />
97
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_DELETEResponse" message="tns:IDataService_GET_SELECT_FINAL_PDF_DELETE_OutputMessage" />
98
    </wsdl:operation>
99
    <wsdl:operation name="GET_SELECT_FINAL_PDF_INSERT">
100
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_INSERT" message="tns:IDataService_GET_SELECT_FINAL_PDF_INSERT_InputMessage" />
101
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_INSERTResponse" message="tns:IDataService_GET_SELECT_FINAL_PDF_INSERT_OutputMessage" />
102
    </wsdl:operation>
103
    <wsdl:operation name="GET_FINALPDF_COUNT">
104
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_FINALPDF_COUNT" message="tns:IDataService_GET_FINALPDF_COUNT_InputMessage" />
105
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_FINALPDF_COUNTResponse" message="tns:IDataService_GET_FINALPDF_COUNT_OutputMessage" />
106
    </wsdl:operation>
107
    <wsdl:operation name="GET_CONVERT_COUNT">
108
      <wsdl:input wsaw:Action="http://tempuri.org/IDataService/GET_CONVERT_COUNT" message="tns:IDataService_GET_CONVERT_COUNT_InputMessage" />
109
      <wsdl:output wsaw:Action="http://tempuri.org/IDataService/GET_CONVERT_COUNTResponse" message="tns:IDataService_GET_CONVERT_COUNT_OutputMessage" />
110
    </wsdl:operation>
111
  </wsdl:portType>
112
  <wsdl:binding name="BasicHttpBinding_IDataService" type="tns:IDataService">
113
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
114
    <wsdl:operation name="GET_SELECT_CONVERT_ITEM">
115
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_CONVERT_ITEM" style="document" />
116
      <wsdl:input>
117
        <soap:body use="literal" />
118
      </wsdl:input>
119
      <wsdl:output>
120
        <soap:body use="literal" />
121
      </wsdl:output>
122
    </wsdl:operation>
123
    <wsdl:operation name="GET_SELECT_RERECONVERT_ITEM">
124
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_RERECONVERT_ITEM" style="document" />
125
      <wsdl:input>
126
        <soap:body use="literal" />
127
      </wsdl:input>
128
      <wsdl:output>
129
        <soap:body use="literal" />
130
      </wsdl:output>
131
    </wsdl:operation>
132
    <wsdl:operation name="GET_SELECT_CONVERT_DELETE">
133
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_CONVERT_DELETE" style="document" />
134
      <wsdl:input>
135
        <soap:body use="literal" />
136
      </wsdl:input>
137
      <wsdl:output>
138
        <soap:body use="literal" />
139
      </wsdl:output>
140
    </wsdl:operation>
141
    <wsdl:operation name="GET_SELECT_RUN_PROJECTS">
142
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_RUN_PROJECTS" style="document" />
143
      <wsdl:input>
144
        <soap:body use="literal" />
145
      </wsdl:input>
146
      <wsdl:output>
147
        <soap:body use="literal" />
148
      </wsdl:output>
149
    </wsdl:operation>
150
    <wsdl:operation name="GET_SELECT_CONVERT_INSERT">
151
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_CONVERT_INSERT" style="document" />
152
      <wsdl:input>
153
        <soap:body use="literal" />
154
      </wsdl:input>
155
      <wsdl:output>
156
        <soap:body use="literal" />
157
      </wsdl:output>
158
    </wsdl:operation>
159
    <wsdl:operation name="GET_SELECT_FINAL_PDF_ITEM">
160
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_ITEM" style="document" />
161
      <wsdl:input>
162
        <soap:body use="literal" />
163
      </wsdl:input>
164
      <wsdl:output>
165
        <soap:body use="literal" />
166
      </wsdl:output>
167
    </wsdl:operation>
168
    <wsdl:operation name="GET_SELECT_FINAL_PDF_DELETE">
169
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_DELETE" style="document" />
170
      <wsdl:input>
171
        <soap:body use="literal" />
172
      </wsdl:input>
173
      <wsdl:output>
174
        <soap:body use="literal" />
175
      </wsdl:output>
176
    </wsdl:operation>
177
    <wsdl:operation name="GET_SELECT_FINAL_PDF_INSERT">
178
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_SELECT_FINAL_PDF_INSERT" style="document" />
179
      <wsdl:input>
180
        <soap:body use="literal" />
181
      </wsdl:input>
182
      <wsdl:output>
183
        <soap:body use="literal" />
184
      </wsdl:output>
185
    </wsdl:operation>
186
    <wsdl:operation name="GET_FINALPDF_COUNT">
187
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_FINALPDF_COUNT" style="document" />
188
      <wsdl:input>
189
        <soap:body use="literal" />
190
      </wsdl:input>
191
      <wsdl:output>
192
        <soap:body use="literal" />
193
      </wsdl:output>
194
    </wsdl:operation>
195
    <wsdl:operation name="GET_CONVERT_COUNT">
196
      <soap:operation soapAction="http://tempuri.org/IDataService/GET_CONVERT_COUNT" style="document" />
197
      <wsdl:input>
198
        <soap:body use="literal" />
199
      </wsdl:input>
200
      <wsdl:output>
201
        <soap:body use="literal" />
202
      </wsdl:output>
203
    </wsdl:operation>
204
  </wsdl:binding>
205
  <wsdl:service name="DataService">
206
    <wsdl:port name="BasicHttpBinding_IDataService" binding="tns:BasicHttpBinding_IDataService">
207
      <soap:address location="http://localhost:55508/DataService.svc" />
208
    </wsdl:port>
209
  </wsdl:service>
210
</wsdl:definitions>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/DataService.xsd
1
<?xml version="1.0" encoding="utf-8"?>
2
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3
  <xs:element name="anyType" nillable="true" type="xs:anyType" />
4
  <xs:element name="anyURI" nillable="true" type="xs:anyURI" />
5
  <xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
6
  <xs:element name="boolean" nillable="true" type="xs:boolean" />
7
  <xs:element name="byte" nillable="true" type="xs:byte" />
8
  <xs:element name="dateTime" nillable="true" type="xs:dateTime" />
9
  <xs:element name="decimal" nillable="true" type="xs:decimal" />
10
  <xs:element name="double" nillable="true" type="xs:double" />
11
  <xs:element name="float" nillable="true" type="xs:float" />
12
  <xs:element name="int" nillable="true" type="xs:int" />
13
  <xs:element name="long" nillable="true" type="xs:long" />
14
  <xs:element name="QName" nillable="true" type="xs:QName" />
15
  <xs:element name="short" nillable="true" type="xs:short" />
16
  <xs:element name="string" nillable="true" type="xs:string" />
17
  <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
18
  <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
19
  <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
20
  <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
21
  <xs:element name="char" nillable="true" type="tns:char" />
22
  <xs:simpleType name="char">
23
    <xs:restriction base="xs:int" />
24
  </xs:simpleType>
25
  <xs:element name="duration" nillable="true" type="tns:duration" />
26
  <xs:simpleType name="duration">
27
    <xs:restriction base="xs:duration">
28
      <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
29
      <xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
30
      <xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
31
    </xs:restriction>
32
  </xs:simpleType>
33
  <xs:element name="guid" nillable="true" type="tns:guid" />
34
  <xs:simpleType name="guid">
35
    <xs:restriction base="xs:string">
36
      <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
37
    </xs:restriction>
38
  </xs:simpleType>
39
  <xs:attribute name="FactoryType" type="xs:QName" />
40
  <xs:attribute name="Id" type="xs:ID" />
41
  <xs:attribute name="Ref" type="xs:IDREF" />
42
</xs:schema>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/DataService1.xsd
1
<?xml version="1.0" encoding="utf-8"?>
2
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/StationControllerService" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/StationControllerService" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3
  <xs:complexType name="ArrayOfSELECT_CONVERT_ITEM_Result">
4
    <xs:sequence>
5
      <xs:element minOccurs="0" maxOccurs="unbounded" name="SELECT_CONVERT_ITEM_Result" nillable="true" type="tns:SELECT_CONVERT_ITEM_Result" />
6
    </xs:sequence>
7
  </xs:complexType>
8
  <xs:element name="ArrayOfSELECT_CONVERT_ITEM_Result" nillable="true" type="tns:ArrayOfSELECT_CONVERT_ITEM_Result" />
9
  <xs:complexType name="SELECT_CONVERT_ITEM_Result">
10
    <xs:sequence>
11
      <xs:element minOccurs="0" name="CONVERT_PATH" nillable="true" type="xs:string" />
12
      <xs:element minOccurs="0" name="CREATE_DATETIME" type="xs:dateTime" />
13
      <xs:element minOccurs="0" name="CURRENT_PAGE" type="xs:int" />
14
      <xs:element minOccurs="0" name="DOCUMENT_ID" nillable="true" type="xs:string" />
15
      <xs:element minOccurs="0" name="DOCUMENT_NAME" nillable="true" type="xs:string" />
16
      <xs:element minOccurs="0" name="DOCUMENT_NO" nillable="true" type="xs:string" />
17
      <xs:element minOccurs="0" name="DOCUMENT_URL" nillable="true" type="xs:string" />
18
      <xs:element minOccurs="0" name="END_DATETIME" nillable="true" type="xs:dateTime" />
19
      <xs:element minOccurs="0" name="EXCEPTION" nillable="true" type="xs:string" />
20
      <xs:element minOccurs="0" name="GROUP_NO" nillable="true" type="xs:string" />
21
      <xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" />
22
      <xs:element minOccurs="0" name="PROJECT_NO" nillable="true" type="xs:string" />
23
      <xs:element minOccurs="0" name="PROPERTIES_VALUE" nillable="true" type="xs:string" />
24
      <xs:element minOccurs="0" name="RECONVERTER" nillable="true" type="xs:int" />
25
      <xs:element minOccurs="0" name="RESULT" nillable="true" type="xs:string" />
26
      <xs:element minOccurs="0" name="RESULT_FILE" nillable="true" type="xs:string" />
27
      <xs:element minOccurs="0" name="REVISION" nillable="true" type="xs:string" />
28
      <xs:element minOccurs="0" name="SERVICE_ID" nillable="true" type="xs:string" />
29
      <xs:element minOccurs="0" name="START_DATETIME" nillable="true" type="xs:dateTime" />
30
      <xs:element minOccurs="0" name="STATUS" type="xs:int" />
31
      <xs:element minOccurs="0" name="TOTAL_PAGE" type="xs:int" />
32
    </xs:sequence>
33
  </xs:complexType>
34
  <xs:element name="SELECT_CONVERT_ITEM_Result" nillable="true" type="tns:SELECT_CONVERT_ITEM_Result" />
35
  <xs:complexType name="ArrayOfSELECT_RUN_PROJECTS_Result">
36
    <xs:sequence>
37
      <xs:element minOccurs="0" maxOccurs="unbounded" name="SELECT_RUN_PROJECTS_Result" nillable="true" type="tns:SELECT_RUN_PROJECTS_Result" />
38
    </xs:sequence>
39
  </xs:complexType>
40
  <xs:element name="ArrayOfSELECT_RUN_PROJECTS_Result" nillable="true" type="tns:ArrayOfSELECT_RUN_PROJECTS_Result" />
41
  <xs:complexType name="SELECT_RUN_PROJECTS_Result">
42
    <xs:sequence>
43
      <xs:element minOccurs="0" name="PROJECT_NAME" nillable="true" type="xs:string" />
44
      <xs:element minOccurs="0" name="PROJECT_NO" nillable="true" type="xs:string" />
45
    </xs:sequence>
46
  </xs:complexType>
47
  <xs:element name="SELECT_RUN_PROJECTS_Result" nillable="true" type="tns:SELECT_RUN_PROJECTS_Result" />
48
  <xs:complexType name="ArrayOfSELECT_FINAL_PDF_ITEM_Result">
49
    <xs:sequence>
50
      <xs:element minOccurs="0" maxOccurs="unbounded" name="SELECT_FINAL_PDF_ITEM_Result" nillable="true" type="tns:SELECT_FINAL_PDF_ITEM_Result" />
51
    </xs:sequence>
52
  </xs:complexType>
53
  <xs:element name="ArrayOfSELECT_FINAL_PDF_ITEM_Result" nillable="true" type="tns:ArrayOfSELECT_FINAL_PDF_ITEM_Result" />
54
  <xs:complexType name="SELECT_FINAL_PDF_ITEM_Result">
55
    <xs:sequence>
56
      <xs:element minOccurs="0" name="CONVERT_PATH" nillable="true" type="xs:string" />
57
      <xs:element minOccurs="0" name="CREATE_DATETIME" type="xs:dateTime" />
58
      <xs:element minOccurs="0" name="CREATE_USER_ID" nillable="true" type="xs:string" />
59
      <xs:element minOccurs="0" name="CURRENT_PAGE" type="xs:int" />
60
      <xs:element minOccurs="0" name="DOCINFO_ID" nillable="true" type="xs:string" />
61
      <xs:element minOccurs="0" name="DOCUMENT_ID" nillable="true" type="xs:string" />
62
      <xs:element minOccurs="0" name="DOCUMENT_NAME" nillable="true" type="xs:string" />
63
      <xs:element minOccurs="0" name="DOCUMENT_NO" nillable="true" type="xs:string" />
64
      <xs:element minOccurs="0" name="END_DATETIME" nillable="true" type="xs:dateTime" />
65
      <xs:element minOccurs="0" name="EXCEPTION" nillable="true" type="xs:string" />
66
      <xs:element minOccurs="0" name="GROUP_NO" nillable="true" type="xs:string" />
67
      <xs:element minOccurs="0" name="ID" nillable="true" type="xs:string" />
68
      <xs:element minOccurs="0" name="MARKUPINFO_ID" nillable="true" type="xs:string" />
69
      <xs:element minOccurs="0" name="ORIGINAL_FILE" nillable="true" type="xs:string" />
70
      <xs:element minOccurs="0" name="PROJECT_NO" nillable="true" type="xs:string" />
71
      <xs:element minOccurs="0" name="PROPERTIES_VALUE" nillable="true" type="xs:string" />
72
      <xs:element minOccurs="0" name="RESULT" nillable="true" type="xs:string" />
73
      <xs:element minOccurs="0" name="RESULT_FILE" nillable="true" type="xs:string" />
74
      <xs:element minOccurs="0" name="REVISION" nillable="true" type="xs:string" />
75
      <xs:element minOccurs="0" name="START_DATETIME" nillable="true" type="xs:dateTime" />
76
      <xs:element minOccurs="0" name="STATUS" type="xs:int" />
77
      <xs:element minOccurs="0" name="TOTAL_PAGE" type="xs:int" />
78
    </xs:sequence>
79
  </xs:complexType>
80
  <xs:element name="SELECT_FINAL_PDF_ITEM_Result" nillable="true" type="tns:SELECT_FINAL_PDF_ITEM_Result" />
81
  <xs:complexType name="ArrayOfFINALPDF_COUNT_Result">
82
    <xs:sequence>
83
      <xs:element minOccurs="0" maxOccurs="unbounded" name="FINALPDF_COUNT_Result" nillable="true" type="tns:FINALPDF_COUNT_Result" />
84
    </xs:sequence>
85
  </xs:complexType>
86
  <xs:element name="ArrayOfFINALPDF_COUNT_Result" nillable="true" type="tns:ArrayOfFINALPDF_COUNT_Result" />
87
  <xs:complexType name="FINALPDF_COUNT_Result">
88
    <xs:sequence>
89
      <xs:element minOccurs="0" name="COUNT" nillable="true" type="xs:int" />
90
      <xs:element minOccurs="0" name="EXCEPTION_COUNT" nillable="true" type="xs:int" />
91
      <xs:element minOccurs="0" name="PROJECT_NO" nillable="true" type="xs:string" />
92
    </xs:sequence>
93
  </xs:complexType>
94
  <xs:element name="FINALPDF_COUNT_Result" nillable="true" type="tns:FINALPDF_COUNT_Result" />
95
  <xs:complexType name="ArrayOfCONVERT_COUNT_Result">
96
    <xs:sequence>
97
      <xs:element minOccurs="0" maxOccurs="unbounded" name="CONVERT_COUNT_Result" nillable="true" type="tns:CONVERT_COUNT_Result" />
98
    </xs:sequence>
99
  </xs:complexType>
100
  <xs:element name="ArrayOfCONVERT_COUNT_Result" nillable="true" type="tns:ArrayOfCONVERT_COUNT_Result" />
101
  <xs:complexType name="CONVERT_COUNT_Result">
102
    <xs:sequence>
103
      <xs:element minOccurs="0" name="COUNT" nillable="true" type="xs:int" />
104
      <xs:element minOccurs="0" name="EXCEPTION_COUNT" nillable="true" type="xs:int" />
105
      <xs:element minOccurs="0" name="PROJECT_NO" nillable="true" type="xs:string" />
106
    </xs:sequence>
107
  </xs:complexType>
108
  <xs:element name="CONVERT_COUNT_Result" nillable="true" type="tns:CONVERT_COUNT_Result" />
109
</xs:schema>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/DataService2.xsd
1
<?xml version="1.0" encoding="utf-8"?>
2
<xs:schema xmlns:tns="http://tempuri.org/" elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3
  <xs:import schemaLocation="http://localhost:55508/DataService.svc?xsd=xsd2" namespace="http://schemas.datacontract.org/2004/07/StationControllerService" />
4
  <xs:element name="GET_SELECT_CONVERT_ITEM">
5
    <xs:complexType>
6
      <xs:sequence>
7
        <xs:element minOccurs="0" name="p_ID" nillable="true" type="xs:string" />
8
        <xs:element minOccurs="0" name="p_PROJECT_NO" nillable="true" type="xs:string" />
9
        <xs:element minOccurs="0" name="p_DOCUMENT_ID" nillable="true" type="xs:string" />
10
        <xs:element minOccurs="0" name="p_STATUS" nillable="true" type="xs:int" />
11
        <xs:element minOccurs="0" name="p_TAKE_COUNT" nillable="true" type="xs:int" />
12
        <xs:element minOccurs="0" name="p_BEGIN_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
13
        <xs:element minOccurs="0" name="p_FINISH_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
14
        <xs:element minOccurs="0" name="p_BEGIN_START_DATETIE" nillable="true" type="xs:dateTime" />
15
        <xs:element minOccurs="0" name="p_FINISH_START_DATETIME" nillable="true" type="xs:dateTime" />
16
        <xs:element minOccurs="0" name="p_BEGIN_END_DATETIME" nillable="true" type="xs:dateTime" />
17
        <xs:element minOccurs="0" name="p_FINISH_END_DATETIME" nillable="true" type="xs:dateTime" />
18
        <xs:element minOccurs="0" name="p_GROUP_NO" nillable="true" type="xs:string" />
19
        <xs:element minOccurs="0" name="p_DOCUMENT_NAME" nillable="true" type="xs:string" />
20
        <xs:element minOccurs="0" name="p_DOCUMENT_NO" nillable="true" type="xs:string" />
21
        <xs:element minOccurs="0" name="p_REVISION" nillable="true" type="xs:string" />
22
        <xs:element minOccurs="0" name="p_SERVICE_ID" nillable="true" type="xs:string" />
23
        <xs:element minOccurs="0" name="p_RECONVERTER" nillable="true" type="xs:int" />
24
        <xs:element minOccurs="0" name="p_DOCUMENT_URL" nillable="true" type="xs:string" />
25
        <xs:element minOccurs="0" name="p_ExcptionCheck" nillable="true" type="xs:boolean" />
26
      </xs:sequence>
27
    </xs:complexType>
28
  </xs:element>
29
  <xs:element name="GET_SELECT_CONVERT_ITEMResponse">
30
    <xs:complexType>
31
      <xs:sequence>
32
        <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/StationControllerService" minOccurs="0" name="GET_SELECT_CONVERT_ITEMResult" nillable="true" type="q1:ArrayOfSELECT_CONVERT_ITEM_Result" />
33
      </xs:sequence>
34
    </xs:complexType>
35
  </xs:element>
36
  <xs:element name="GET_SELECT_RERECONVERT_ITEM">
37
    <xs:complexType>
38
      <xs:sequence>
39
        <xs:element minOccurs="0" name="p_ID" nillable="true" type="xs:string" />
40
        <xs:element minOccurs="0" name="p_RECONVERTER" nillable="true" type="xs:int" />
41
        <xs:element minOccurs="0" name="p_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
42
        <xs:element minOccurs="0" name="p_STATUS" nillable="true" type="xs:int" />
43
        <xs:element minOccurs="0" name="p_END_DATETIME" nillable="true" type="xs:dateTime" />
44
      </xs:sequence>
45
    </xs:complexType>
46
  </xs:element>
47
  <xs:element name="GET_SELECT_RERECONVERT_ITEMResponse">
48
    <xs:complexType>
49
      <xs:sequence>
50
        <xs:element minOccurs="0" name="GET_SELECT_RERECONVERT_ITEMResult" type="xs:int" />
51
      </xs:sequence>
52
    </xs:complexType>
53
  </xs:element>
54
  <xs:element name="GET_SELECT_CONVERT_DELETE">
55
    <xs:complexType>
56
      <xs:sequence>
57
        <xs:element minOccurs="0" name="p_ID" nillable="true" type="xs:string" />
58
      </xs:sequence>
59
    </xs:complexType>
60
  </xs:element>
61
  <xs:element name="GET_SELECT_CONVERT_DELETEResponse">
62
    <xs:complexType>
63
      <xs:sequence>
64
        <xs:element minOccurs="0" name="GET_SELECT_CONVERT_DELETEResult" type="xs:int" />
65
      </xs:sequence>
66
    </xs:complexType>
67
  </xs:element>
68
  <xs:element name="GET_SELECT_RUN_PROJECTS">
69
    <xs:complexType>
70
      <xs:sequence>
71
        <xs:element minOccurs="0" name="p_RUN_PROJECTS" type="xs:int" />
72
      </xs:sequence>
73
    </xs:complexType>
74
  </xs:element>
75
  <xs:element name="GET_SELECT_RUN_PROJECTSResponse">
76
    <xs:complexType>
77
      <xs:sequence>
78
        <xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/StationControllerService" minOccurs="0" name="GET_SELECT_RUN_PROJECTSResult" nillable="true" type="q2:ArrayOfSELECT_RUN_PROJECTS_Result" />
79
      </xs:sequence>
80
    </xs:complexType>
81
  </xs:element>
82
  <xs:element name="GET_SELECT_CONVERT_INSERT">
83
    <xs:complexType>
84
      <xs:sequence>
85
        <xs:element minOccurs="0" name="p_ID" nillable="true" type="xs:string" />
86
        <xs:element minOccurs="0" name="p_PROJECT_NO" nillable="true" type="xs:string" />
87
        <xs:element minOccurs="0" name="p_DOCUMENT_URL" nillable="true" type="xs:string" />
88
        <xs:element minOccurs="0" name="p_DOCUMENT_ID" nillable="true" type="xs:string" />
89
      </xs:sequence>
90
    </xs:complexType>
91
  </xs:element>
92
  <xs:element name="GET_SELECT_CONVERT_INSERTResponse">
93
    <xs:complexType>
94
      <xs:sequence>
95
        <xs:element minOccurs="0" name="GET_SELECT_CONVERT_INSERTResult" type="xs:int" />
96
      </xs:sequence>
97
    </xs:complexType>
98
  </xs:element>
99
  <xs:element name="GET_SELECT_FINAL_PDF_ITEM">
100
    <xs:complexType>
101
      <xs:sequence>
102
        <xs:element minOccurs="0" name="p_ID" nillable="true" type="xs:string" />
103
        <xs:element minOccurs="0" name="p_PROJECT_NO" nillable="true" type="xs:string" />
104
        <xs:element minOccurs="0" name="p_DOCUMENT_ID" nillable="true" type="xs:string" />
105
        <xs:element minOccurs="0" name="p_MARKUPINFO_ID" nillable="true" type="xs:string" />
106
        <xs:element minOccurs="0" name="p_DOCINFO_ID" nillable="true" type="xs:string" />
107
        <xs:element minOccurs="0" name="p_DOCUMENT_NAME" nillable="true" type="xs:string" />
108
        <xs:element minOccurs="0" name="p_DOCUMENT_NO" nillable="true" type="xs:string" />
109
        <xs:element minOccurs="0" name="p_CREATE_USER_ID" nillable="true" type="xs:string" />
110
        <xs:element minOccurs="0" name="p_STATUS" nillable="true" type="xs:int" />
111
        <xs:element minOccurs="0" name="p_TAKE_COUNT" nillable="true" type="xs:int" />
112
        <xs:element minOccurs="0" name="p_GROUP_NO" nillable="true" type="xs:string" />
113
        <xs:element minOccurs="0" name="p_REVISION" nillable="true" type="xs:string" />
114
        <xs:element minOccurs="0" name="p_BEGIN_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
115
        <xs:element minOccurs="0" name="p_FINISH_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
116
        <xs:element minOccurs="0" name="p_BEGIN_START_DATETIE" nillable="true" type="xs:dateTime" />
117
        <xs:element minOccurs="0" name="p_FINISH_START_DATETIME" nillable="true" type="xs:dateTime" />
118
        <xs:element minOccurs="0" name="p_BEGIN_END_DATETIME" nillable="true" type="xs:dateTime" />
119
        <xs:element minOccurs="0" name="p_FINISH_END_DATETIME" nillable="true" type="xs:dateTime" />
120
        <xs:element minOccurs="0" name="p_DOCUMENT_URL" nillable="true" type="xs:string" />
121
        <xs:element minOccurs="0" name="p_ExcptionCheck" nillable="true" type="xs:boolean" />
122
      </xs:sequence>
123
    </xs:complexType>
124
  </xs:element>
125
  <xs:element name="GET_SELECT_FINAL_PDF_ITEMResponse">
126
    <xs:complexType>
127
      <xs:sequence>
128
        <xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/StationControllerService" minOccurs="0" name="GET_SELECT_FINAL_PDF_ITEMResult" nillable="true" type="q3:ArrayOfSELECT_FINAL_PDF_ITEM_Result" />
129
      </xs:sequence>
130
    </xs:complexType>
131
  </xs:element>
132
  <xs:element name="GET_SELECT_FINAL_PDF_DELETE">
133
    <xs:complexType>
134
      <xs:sequence>
135
        <xs:element minOccurs="0" name="p_ID" nillable="true" type="xs:string" />
136
      </xs:sequence>
137
    </xs:complexType>
138
  </xs:element>
139
  <xs:element name="GET_SELECT_FINAL_PDF_DELETEResponse">
140
    <xs:complexType>
141
      <xs:sequence>
142
        <xs:element minOccurs="0" name="GET_SELECT_FINAL_PDF_DELETEResult" type="xs:int" />
143
      </xs:sequence>
144
    </xs:complexType>
145
  </xs:element>
146
  <xs:element name="GET_SELECT_FINAL_PDF_INSERT">
147
    <xs:complexType>
148
      <xs:sequence>
149
        <xs:element minOccurs="0" name="p_ID" nillable="true" type="xs:string" />
150
        <xs:element minOccurs="0" name="p_PROJECT_NO" nillable="true" type="xs:string" />
151
        <xs:element minOccurs="0" name="p_DOCUMENT_URL" nillable="true" type="xs:string" />
152
        <xs:element minOccurs="0" name="p_DOCUMENT_ID" nillable="true" type="xs:string" />
153
      </xs:sequence>
154
    </xs:complexType>
155
  </xs:element>
156
  <xs:element name="GET_SELECT_FINAL_PDF_INSERTResponse">
157
    <xs:complexType>
158
      <xs:sequence>
159
        <xs:element minOccurs="0" name="GET_SELECT_FINAL_PDF_INSERTResult" type="xs:int" />
160
      </xs:sequence>
161
    </xs:complexType>
162
  </xs:element>
163
  <xs:element name="GET_FINALPDF_COUNT">
164
    <xs:complexType>
165
      <xs:sequence>
166
        <xs:element minOccurs="0" name="p_STATUS" nillable="true" type="xs:int" />
167
        <xs:element minOccurs="0" name="p_BEGIN_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
168
        <xs:element minOccurs="0" name="p_FINISH_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
169
      </xs:sequence>
170
    </xs:complexType>
171
  </xs:element>
172
  <xs:element name="GET_FINALPDF_COUNTResponse">
173
    <xs:complexType>
174
      <xs:sequence>
175
        <xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/StationControllerService" minOccurs="0" name="GET_FINALPDF_COUNTResult" nillable="true" type="q4:ArrayOfFINALPDF_COUNT_Result" />
176
      </xs:sequence>
177
    </xs:complexType>
178
  </xs:element>
179
  <xs:element name="GET_CONVERT_COUNT">
180
    <xs:complexType>
181
      <xs:sequence>
182
        <xs:element minOccurs="0" name="p_STATUS" nillable="true" type="xs:int" />
183
        <xs:element minOccurs="0" name="p_BEGIN_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
184
        <xs:element minOccurs="0" name="p_FINISH_CREATE_DATETIME" nillable="true" type="xs:dateTime" />
185
      </xs:sequence>
186
    </xs:complexType>
187
  </xs:element>
188
  <xs:element name="GET_CONVERT_COUNTResponse">
189
    <xs:complexType>
190
      <xs:sequence>
191
        <xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/StationControllerService" minOccurs="0" name="GET_CONVERT_COUNTResult" nillable="true" type="q5:ArrayOfCONVERT_COUNT_Result" />
192
      </xs:sequence>
193
    </xs:complexType>
194
  </xs:element>
195
</xs:schema>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/Markus.Service.WcfClient.ServiceReference1.CONVERT_COUNT_Result.datasource
1
<?xml version="1.0" encoding="utf-8"?>
2
<!--
3
    This file is automatically generated by Visual Studio .Net. It is 
4
    used to store generic object data source configuration information.  
5
    Renaming the file extension or editing the content of this file may   
6
    cause the file to be unrecognizable by the program.
7
-->
8
<GenericObjectDataSource DisplayName="CONVERT_COUNT_Result" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
9
   <TypeInfo>Markus.Service.WcfClient.ServiceReference1.CONVERT_COUNT_Result, Connected Services.ServiceReference1.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
10
</GenericObjectDataSource>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/Markus.Service.WcfClient.ServiceReference1.FINALPDF_COUNT_Result.datasource
1
<?xml version="1.0" encoding="utf-8"?>
2
<!--
3
    This file is automatically generated by Visual Studio .Net. It is 
4
    used to store generic object data source configuration information.  
5
    Renaming the file extension or editing the content of this file may   
6
    cause the file to be unrecognizable by the program.
7
-->
8
<GenericObjectDataSource DisplayName="FINALPDF_COUNT_Result" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
9
   <TypeInfo>Markus.Service.WcfClient.ServiceReference1.FINALPDF_COUNT_Result, Connected Services.ServiceReference1.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
10
</GenericObjectDataSource>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/Markus.Service.WcfClient.ServiceReference1.SELECT_CONVERT_ITEM_Result.datasource
1
<?xml version="1.0" encoding="utf-8"?>
2
<!--
3
    This file is automatically generated by Visual Studio .Net. It is 
4
    used to store generic object data source configuration information.  
5
    Renaming the file extension or editing the content of this file may   
6
    cause the file to be unrecognizable by the program.
7
-->
8
<GenericObjectDataSource DisplayName="SELECT_CONVERT_ITEM_Result" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
9
   <TypeInfo>Markus.Service.WcfClient.ServiceReference1.SELECT_CONVERT_ITEM_Result, Connected Services.ServiceReference1.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
10
</GenericObjectDataSource>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/Markus.Service.WcfClient.ServiceReference1.SELECT_FINAL_PDF_ITEM_Result.datasource
1
<?xml version="1.0" encoding="utf-8"?>
2
<!--
3
    This file is automatically generated by Visual Studio .Net. It is 
4
    used to store generic object data source configuration information.  
5
    Renaming the file extension or editing the content of this file may   
6
    cause the file to be unrecognizable by the program.
7
-->
8
<GenericObjectDataSource DisplayName="SELECT_FINAL_PDF_ITEM_Result" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
9
   <TypeInfo>Markus.Service.WcfClient.ServiceReference1.SELECT_FINAL_PDF_ITEM_Result, Connected Services.ServiceReference1.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
10
</GenericObjectDataSource>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/Markus.Service.WcfClient.ServiceReference1.SELECT_RUN_PROJECTS_Result.datasource
1
<?xml version="1.0" encoding="utf-8"?>
2
<!--
3
    This file is automatically generated by Visual Studio .Net. It is 
4
    used to store generic object data source configuration information.  
5
    Renaming the file extension or editing the content of this file may   
6
    cause the file to be unrecognizable by the program.
7
-->
8
<GenericObjectDataSource DisplayName="SELECT_RUN_PROJECTS_Result" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
9
   <TypeInfo>Markus.Service.WcfClient.ServiceReference1.SELECT_RUN_PROJECTS_Result, Connected Services.ServiceReference1.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
10
</GenericObjectDataSource>
ConvertService/ServiceBase/Markus.Service.WcfClient/Connected Services/ServiceReference1/Reference.cs
1
//------------------------------------------------------------------------------
2
// <auto-generated>
3
//     이 코드는 도구를 사용하여 생성되었습니다.
4
//     런타임 버전:4.0.30319.42000
5
//
6
//     파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
7
//     이러한 변경 내용이 손실됩니다.
8
// </auto-generated>
9
//------------------------------------------------------------------------------
10

  
11
namespace Markus.Service.WcfClient.ServiceReference1 {
12
    using System.Runtime.Serialization;
13
    using System;
14
    
15
    
16
    [System.Diagnostics.DebuggerStepThroughAttribute()]
17
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
18
    [System.Runtime.Serialization.DataContractAttribute(Name="SELECT_CONVERT_ITEM_Result", Namespace="http://schemas.datacontract.org/2004/07/StationControllerService")]
19
    [System.SerializableAttribute()]
20
    public partial class SELECT_CONVERT_ITEM_Result : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
21
        
22
        [System.NonSerializedAttribute()]
23
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
24
        
25
        [System.Runtime.Serialization.OptionalFieldAttribute()]
26
        private string CONVERT_PATHField;
27
        
28
        [System.Runtime.Serialization.OptionalFieldAttribute()]
29
        private System.DateTime CREATE_DATETIMEField;
30
        
31
        [System.Runtime.Serialization.OptionalFieldAttribute()]
32
        private int CURRENT_PAGEField;
33
        
34
        [System.Runtime.Serialization.OptionalFieldAttribute()]
35
        private string DOCUMENT_IDField;
36
        
37
        [System.Runtime.Serialization.OptionalFieldAttribute()]
38
        private string DOCUMENT_NAMEField;
39
        
40
        [System.Runtime.Serialization.OptionalFieldAttribute()]
41
        private string DOCUMENT_NOField;
42
        
43
        [System.Runtime.Serialization.OptionalFieldAttribute()]
44
        private string DOCUMENT_URLField;
45
        
46
        [System.Runtime.Serialization.OptionalFieldAttribute()]
47
        private System.Nullable<System.DateTime> END_DATETIMEField;
48
        
49
        [System.Runtime.Serialization.OptionalFieldAttribute()]
50
        private string EXCEPTIONField;
51
        
52
        [System.Runtime.Serialization.OptionalFieldAttribute()]
53
        private string GROUP_NOField;
54
        
55
        [System.Runtime.Serialization.OptionalFieldAttribute()]
56
        private string IDField;
57
        
58
        [System.Runtime.Serialization.OptionalFieldAttribute()]
59
        private string PROJECT_NOField;
60
        
61
        [System.Runtime.Serialization.OptionalFieldAttribute()]
62
        private string PROPERTIES_VALUEField;
63
        
64
        [System.Runtime.Serialization.OptionalFieldAttribute()]
65
        private System.Nullable<int> RECONVERTERField;
66
        
67
        [System.Runtime.Serialization.OptionalFieldAttribute()]
68
        private string RESULTField;
69
        
70
        [System.Runtime.Serialization.OptionalFieldAttribute()]
71
        private string RESULT_FILEField;
72
        
73
        [System.Runtime.Serialization.OptionalFieldAttribute()]
74
        private string REVISIONField;
75
        
76
        [System.Runtime.Serialization.OptionalFieldAttribute()]
77
        private string SERVICE_IDField;
78
        
79
        [System.Runtime.Serialization.OptionalFieldAttribute()]
80
        private System.Nullable<System.DateTime> START_DATETIMEField;
81
        
82
        [System.Runtime.Serialization.OptionalFieldAttribute()]
83
        private int STATUSField;
84
        
85
        [System.Runtime.Serialization.OptionalFieldAttribute()]
86
        private int TOTAL_PAGEField;
87
        
88
        [global::System.ComponentModel.BrowsableAttribute(false)]
89
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
90
            get {
91
                return this.extensionDataField;
92
            }
93
            set {
94
                this.extensionDataField = value;
95
            }
96
        }
97
        
98
        [System.Runtime.Serialization.DataMemberAttribute()]
99
        public string CONVERT_PATH {
100
            get {
101
                return this.CONVERT_PATHField;
102
            }
103
            set {
104
                if ((object.ReferenceEquals(this.CONVERT_PATHField, value) != true)) {
105
                    this.CONVERT_PATHField = value;
106
                    this.RaisePropertyChanged("CONVERT_PATH");
107
                }
108
            }
109
        }
110
        
111
        [System.Runtime.Serialization.DataMemberAttribute()]
112
        public System.DateTime CREATE_DATETIME {
113
            get {
114
                return this.CREATE_DATETIMEField;
115
            }
116
            set {
117
                if ((this.CREATE_DATETIMEField.Equals(value) != true)) {
118
                    this.CREATE_DATETIMEField = value;
119
                    this.RaisePropertyChanged("CREATE_DATETIME");
120
                }
121
            }
122
        }
123
        
124
        [System.Runtime.Serialization.DataMemberAttribute()]
125
        public int CURRENT_PAGE {
126
            get {
127
                return this.CURRENT_PAGEField;
128
            }
129
            set {
130
                if ((this.CURRENT_PAGEField.Equals(value) != true)) {
131
                    this.CURRENT_PAGEField = value;
132
                    this.RaisePropertyChanged("CURRENT_PAGE");
133
                }
134
            }
135
        }
136
        
137
        [System.Runtime.Serialization.DataMemberAttribute()]
138
        public string DOCUMENT_ID {
139
            get {
140
                return this.DOCUMENT_IDField;
141
            }
142
            set {
143
                if ((object.ReferenceEquals(this.DOCUMENT_IDField, value) != true)) {
144
                    this.DOCUMENT_IDField = value;
145
                    this.RaisePropertyChanged("DOCUMENT_ID");
146
                }
147
            }
148
        }
149
        
150
        [System.Runtime.Serialization.DataMemberAttribute()]
151
        public string DOCUMENT_NAME {
152
            get {
153
                return this.DOCUMENT_NAMEField;
154
            }
155
            set {
156
                if ((object.ReferenceEquals(this.DOCUMENT_NAMEField, value) != true)) {
157
                    this.DOCUMENT_NAMEField = value;
158
                    this.RaisePropertyChanged("DOCUMENT_NAME");
159
                }
160
            }
161
        }
162
        
163
        [System.Runtime.Serialization.DataMemberAttribute()]
164
        public string DOCUMENT_NO {
165
            get {
166
                return this.DOCUMENT_NOField;
167
            }
168
            set {
169
                if ((object.ReferenceEquals(this.DOCUMENT_NOField, value) != true)) {
170
                    this.DOCUMENT_NOField = value;
171
                    this.RaisePropertyChanged("DOCUMENT_NO");
172
                }
173
            }
174
        }
175
        
176
        [System.Runtime.Serialization.DataMemberAttribute()]
177
        public string DOCUMENT_URL {
178
            get {
179
                return this.DOCUMENT_URLField;
180
            }
181
            set {
182
                if ((object.ReferenceEquals(this.DOCUMENT_URLField, value) != true)) {
183
                    this.DOCUMENT_URLField = value;
184
                    this.RaisePropertyChanged("DOCUMENT_URL");
185
                }
186
            }
187
        }
188
        
189
        [System.Runtime.Serialization.DataMemberAttribute()]
190
        public System.Nullable<System.DateTime> END_DATETIME {
191
            get {
192
                return this.END_DATETIMEField;
193
            }
194
            set {
195
                if ((this.END_DATETIMEField.Equals(value) != true)) {
196
                    this.END_DATETIMEField = value;
197
                    this.RaisePropertyChanged("END_DATETIME");
198
                }
199
            }
200
        }
201
        
202
        [System.Runtime.Serialization.DataMemberAttribute()]
203
        public string EXCEPTION {
204
            get {
205
                return this.EXCEPTIONField;
206
            }
207
            set {
208
                if ((object.ReferenceEquals(this.EXCEPTIONField, value) != true)) {
209
                    this.EXCEPTIONField = value;
210
                    this.RaisePropertyChanged("EXCEPTION");
211
                }
212
            }
213
        }
214
        
215
        [System.Runtime.Serialization.DataMemberAttribute()]
216
        public string GROUP_NO {
217
            get {
218
                return this.GROUP_NOField;
219
            }
220
            set {
221
                if ((object.ReferenceEquals(this.GROUP_NOField, value) != true)) {
222
                    this.GROUP_NOField = value;
223
                    this.RaisePropertyChanged("GROUP_NO");
224
                }
225
            }
226
        }
227
        
228
        [System.Runtime.Serialization.DataMemberAttribute()]
229
        public string ID {
230
            get {
231
                return this.IDField;
232
            }
233
            set {
234
                if ((object.ReferenceEquals(this.IDField, value) != true)) {
235
                    this.IDField = value;
236
                    this.RaisePropertyChanged("ID");
237
                }
238
            }
239
        }
240
        
241
        [System.Runtime.Serialization.DataMemberAttribute()]
242
        public string PROJECT_NO {
243
            get {
244
                return this.PROJECT_NOField;
245
            }
246
            set {
247
                if ((object.ReferenceEquals(this.PROJECT_NOField, value) != true)) {
248
                    this.PROJECT_NOField = value;
249
                    this.RaisePropertyChanged("PROJECT_NO");
250
                }
251
            }
252
        }
253
        
254
        [System.Runtime.Serialization.DataMemberAttribute()]
255
        public string PROPERTIES_VALUE {
256
            get {
257
                return this.PROPERTIES_VALUEField;
258
            }
259
            set {
260
                if ((object.ReferenceEquals(this.PROPERTIES_VALUEField, value) != true)) {
261
                    this.PROPERTIES_VALUEField = value;
262
                    this.RaisePropertyChanged("PROPERTIES_VALUE");
263
                }
264
            }
265
        }
266
        
267
        [System.Runtime.Serialization.DataMemberAttribute()]
268
        public System.Nullable<int> RECONVERTER {
269
            get {
270
                return this.RECONVERTERField;
271
            }
272
            set {
273
                if ((this.RECONVERTERField.Equals(value) != true)) {
274
                    this.RECONVERTERField = value;
275
                    this.RaisePropertyChanged("RECONVERTER");
276
                }
277
            }
278
        }
279
        
280
        [System.Runtime.Serialization.DataMemberAttribute()]
281
        public string RESULT {
282
            get {
283
                return this.RESULTField;
284
            }
285
            set {
286
                if ((object.ReferenceEquals(this.RESULTField, value) != true)) {
287
                    this.RESULTField = value;
288
                    this.RaisePropertyChanged("RESULT");
289
                }
290
            }
291
        }
292
        
293
        [System.Runtime.Serialization.DataMemberAttribute()]
294
        public string RESULT_FILE {
295
            get {
296
                return this.RESULT_FILEField;
297
            }
298
            set {
299
                if ((object.ReferenceEquals(this.RESULT_FILEField, value) != true)) {
300
                    this.RESULT_FILEField = value;
301
                    this.RaisePropertyChanged("RESULT_FILE");
302
                }
303
            }
304
        }
305
        
306
        [System.Runtime.Serialization.DataMemberAttribute()]
307
        public string REVISION {
308
            get {
309
                return this.REVISIONField;
310
            }
311
            set {
312
                if ((object.ReferenceEquals(this.REVISIONField, value) != true)) {
313
                    this.REVISIONField = value;
314
                    this.RaisePropertyChanged("REVISION");
315
                }
316
            }
317
        }
318
        
319
        [System.Runtime.Serialization.DataMemberAttribute()]
320
        public string SERVICE_ID {
321
            get {
322
                return this.SERVICE_IDField;
323
            }
324
            set {
325
                if ((object.ReferenceEquals(this.SERVICE_IDField, value) != true)) {
326
                    this.SERVICE_IDField = value;
327
                    this.RaisePropertyChanged("SERVICE_ID");
328
                }
329
            }
330
        }
331
        
332
        [System.Runtime.Serialization.DataMemberAttribute()]
333
        public System.Nullable<System.DateTime> START_DATETIME {
334
            get {
335
                return this.START_DATETIMEField;
336
            }
337
            set {
338
                if ((this.START_DATETIMEField.Equals(value) != true)) {
339
                    this.START_DATETIMEField = value;
340
                    this.RaisePropertyChanged("START_DATETIME");
341
                }
342
            }
343
        }
344
        
345
        [System.Runtime.Serialization.DataMemberAttribute()]
346
        public int STATUS {
347
            get {
348
                return this.STATUSField;
349
            }
350
            set {
351
                if ((this.STATUSField.Equals(value) != true)) {
352
                    this.STATUSField = value;
353
                    this.RaisePropertyChanged("STATUS");
354
                }
355
            }
356
        }
357
        
358
        [System.Runtime.Serialization.DataMemberAttribute()]
359
        public int TOTAL_PAGE {
360
            get {
361
                return this.TOTAL_PAGEField;
362
            }
363
            set {
364
                if ((this.TOTAL_PAGEField.Equals(value) != true)) {
365
                    this.TOTAL_PAGEField = value;
366
                    this.RaisePropertyChanged("TOTAL_PAGE");
367
                }
368
            }
369
        }
370
        
371
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
372
        
373
        protected void RaisePropertyChanged(string propertyName) {
374
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
375
            if ((propertyChanged != null)) {
376
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
377
            }
378
        }
379
    }
380
    
381
    [System.Diagnostics.DebuggerStepThroughAttribute()]
382
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
383
    [System.Runtime.Serialization.DataContractAttribute(Name="SELECT_RUN_PROJECTS_Result", Namespace="http://schemas.datacontract.org/2004/07/StationControllerService")]
384
    [System.SerializableAttribute()]
385
    public partial class SELECT_RUN_PROJECTS_Result : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
386
        
387
        [System.NonSerializedAttribute()]
388
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
389
        
390
        [System.Runtime.Serialization.OptionalFieldAttribute()]
391
        private string PROJECT_NAMEField;
392
        
393
        [System.Runtime.Serialization.OptionalFieldAttribute()]
394
        private string PROJECT_NOField;
395
        
396
        [global::System.ComponentModel.BrowsableAttribute(false)]
397
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
398
            get {
399
                return this.extensionDataField;
400
            }
401
            set {
402
                this.extensionDataField = value;
403
            }
404
        }
405
        
406
        [System.Runtime.Serialization.DataMemberAttribute()]
407
        public string PROJECT_NAME {
408
            get {
409
                return this.PROJECT_NAMEField;
410
            }
411
            set {
412
                if ((object.ReferenceEquals(this.PROJECT_NAMEField, value) != true)) {
413
                    this.PROJECT_NAMEField = value;
414
                    this.RaisePropertyChanged("PROJECT_NAME");
415
                }
416
            }
417
        }
418
        
419
        [System.Runtime.Serialization.DataMemberAttribute()]
420
        public string PROJECT_NO {
421
            get {
422
                return this.PROJECT_NOField;
423
            }
424
            set {
425
                if ((object.ReferenceEquals(this.PROJECT_NOField, value) != true)) {
426
                    this.PROJECT_NOField = value;
427
                    this.RaisePropertyChanged("PROJECT_NO");
428
                }
429
            }
430
        }
431
        
432
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
433
        
434
        protected void RaisePropertyChanged(string propertyName) {
435
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
436
            if ((propertyChanged != null)) {
437
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
438
            }
439
        }
440
    }
441
    
442
    [System.Diagnostics.DebuggerStepThroughAttribute()]
443
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
444
    [System.Runtime.Serialization.DataContractAttribute(Name="SELECT_FINAL_PDF_ITEM_Result", Namespace="http://schemas.datacontract.org/2004/07/StationControllerService")]
445
    [System.SerializableAttribute()]
446
    public partial class SELECT_FINAL_PDF_ITEM_Result : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
447
        
448
        [System.NonSerializedAttribute()]
449
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
450
        
451
        [System.Runtime.Serialization.OptionalFieldAttribute()]
452
        private string CONVERT_PATHField;
453
        
454
        [System.Runtime.Serialization.OptionalFieldAttribute()]
455
        private System.DateTime CREATE_DATETIMEField;
456
        
457
        [System.Runtime.Serialization.OptionalFieldAttribute()]
458
        private string CREATE_USER_IDField;
459
        
460
        [System.Runtime.Serialization.OptionalFieldAttribute()]
461
        private int CURRENT_PAGEField;
462
        
463
        [System.Runtime.Serialization.OptionalFieldAttribute()]
464
        private string DOCINFO_IDField;
465
        
466
        [System.Runtime.Serialization.OptionalFieldAttribute()]
467
        private string DOCUMENT_IDField;
468
        
469
        [System.Runtime.Serialization.OptionalFieldAttribute()]
470
        private string DOCUMENT_NAMEField;
471
        
472
        [System.Runtime.Serialization.OptionalFieldAttribute()]
473
        private string DOCUMENT_NOField;
474
        
475
        [System.Runtime.Serialization.OptionalFieldAttribute()]
476
        private System.Nullable<System.DateTime> END_DATETIMEField;
477
        
478
        [System.Runtime.Serialization.OptionalFieldAttribute()]
479
        private string EXCEPTIONField;
480
        
481
        [System.Runtime.Serialization.OptionalFieldAttribute()]
482
        private string GROUP_NOField;
483
        
484
        [System.Runtime.Serialization.OptionalFieldAttribute()]
485
        private string IDField;
486
        
487
        [System.Runtime.Serialization.OptionalFieldAttribute()]
488
        private string MARKUPINFO_IDField;
489
        
490
        [System.Runtime.Serialization.OptionalFieldAttribute()]
491
        private string ORIGINAL_FILEField;
492
        
493
        [System.Runtime.Serialization.OptionalFieldAttribute()]
494
        private string PROJECT_NOField;
495
        
496
        [System.Runtime.Serialization.OptionalFieldAttribute()]
497
        private string PROPERTIES_VALUEField;
498
        
499
        [System.Runtime.Serialization.OptionalFieldAttribute()]
500
        private string RESULTField;
501
        
502
        [System.Runtime.Serialization.OptionalFieldAttribute()]
503
        private string RESULT_FILEField;
504
        
505
        [System.Runtime.Serialization.OptionalFieldAttribute()]
506
        private string REVISIONField;
507
        
508
        [System.Runtime.Serialization.OptionalFieldAttribute()]
509
        private System.Nullable<System.DateTime> START_DATETIMEField;
510
        
511
        [System.Runtime.Serialization.OptionalFieldAttribute()]
512
        private int STATUSField;
513
        
514
        [System.Runtime.Serialization.OptionalFieldAttribute()]
515
        private int TOTAL_PAGEField;
516
        
517
        [global::System.ComponentModel.BrowsableAttribute(false)]
518
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
519
            get {
520
                return this.extensionDataField;
521
            }
522
            set {
523
                this.extensionDataField = value;
524
            }
525
        }
526
        
527
        [System.Runtime.Serialization.DataMemberAttribute()]
528
        public string CONVERT_PATH {
529
            get {
530
                return this.CONVERT_PATHField;
531
            }
532
            set {
533
                if ((object.ReferenceEquals(this.CONVERT_PATHField, value) != true)) {
534
                    this.CONVERT_PATHField = value;
535
                    this.RaisePropertyChanged("CONVERT_PATH");
536
                }
537
            }
538
        }
539
        
540
        [System.Runtime.Serialization.DataMemberAttribute()]
541
        public System.DateTime CREATE_DATETIME {
542
            get {
543
                return this.CREATE_DATETIMEField;
544
            }
545
            set {
546
                if ((this.CREATE_DATETIMEField.Equals(value) != true)) {
547
                    this.CREATE_DATETIMEField = value;
548
                    this.RaisePropertyChanged("CREATE_DATETIME");
549
                }
550
            }
551
        }
552
        
553
        [System.Runtime.Serialization.DataMemberAttribute()]
554
        public string CREATE_USER_ID {
555
            get {
556
                return this.CREATE_USER_IDField;
557
            }
558
            set {
559
                if ((object.ReferenceEquals(this.CREATE_USER_IDField, value) != true)) {
560
                    this.CREATE_USER_IDField = value;
561
                    this.RaisePropertyChanged("CREATE_USER_ID");
562
                }
563
            }
564
        }
565
        
566
        [System.Runtime.Serialization.DataMemberAttribute()]
567
        public int CURRENT_PAGE {
568
            get {
569
                return this.CURRENT_PAGEField;
570
            }
571
            set {
572
                if ((this.CURRENT_PAGEField.Equals(value) != true)) {
573
                    this.CURRENT_PAGEField = value;
574
                    this.RaisePropertyChanged("CURRENT_PAGE");
575
                }
576
            }
577
        }
578
        
579
        [System.Runtime.Serialization.DataMemberAttribute()]
580
        public string DOCINFO_ID {
581
            get {
582
                return this.DOCINFO_IDField;
583
            }
584
            set {
585
                if ((object.ReferenceEquals(this.DOCINFO_IDField, value) != true)) {
586
                    this.DOCINFO_IDField = value;
587
                    this.RaisePropertyChanged("DOCINFO_ID");
588
                }
589
            }
590
        }
591
        
592
        [System.Runtime.Serialization.DataMemberAttribute()]
593
        public string DOCUMENT_ID {
594
            get {
595
                return this.DOCUMENT_IDField;
596
            }
597
            set {
598
                if ((object.ReferenceEquals(this.DOCUMENT_IDField, value) != true)) {
599
                    this.DOCUMENT_IDField = value;
600
                    this.RaisePropertyChanged("DOCUMENT_ID");
601
                }
602
            }
603
        }
604
        
605
        [System.Runtime.Serialization.DataMemberAttribute()]
606
        public string DOCUMENT_NAME {
607
            get {
608
                return this.DOCUMENT_NAMEField;
609
            }
610
            set {
611
                if ((object.ReferenceEquals(this.DOCUMENT_NAMEField, value) != true)) {
612
                    this.DOCUMENT_NAMEField = value;
613
                    this.RaisePropertyChanged("DOCUMENT_NAME");
614
                }
615
            }
616
        }
617
        
618
        [System.Runtime.Serialization.DataMemberAttribute()]
619
        public string DOCUMENT_NO {
620
            get {
621
                return this.DOCUMENT_NOField;
622
            }
623
            set {
624
                if ((object.ReferenceEquals(this.DOCUMENT_NOField, value) != true)) {
625
                    this.DOCUMENT_NOField = value;
626
                    this.RaisePropertyChanged("DOCUMENT_NO");
627
                }
628
            }
629
        }
630
        
631
        [System.Runtime.Serialization.DataMemberAttribute()]
632
        public System.Nullable<System.DateTime> END_DATETIME {
633
            get {
634
                return this.END_DATETIMEField;
635
            }
636
            set {
637
                if ((this.END_DATETIMEField.Equals(value) != true)) {
638
                    this.END_DATETIMEField = value;
639
                    this.RaisePropertyChanged("END_DATETIME");
640
                }
641
            }
642
        }
643
        
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)