프로젝트

일반

사용자정보

개정판 c0977e97

IDc0977e979ba7f207d4004ecb09afa0d3e3c93926
상위 5423f26d
하위 f0377812, a5aab11f

김동진이(가) 5년 이상 전에 추가함

issue #000 group & dept color 임시 제거. IFinalPDF 를 Final Service 의 프로젝트를 참조하도록 경로 수정.

Change-Id: I03efb63cd9a922a4bda147a13d309b246f865ac3

차이점 보기:

IFinalPDF/Cache.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

  
6
namespace IFinalPDF
7
{
8
    public class Cache
9
    {
10
        private static Cache myInstance;
11
        public static InterfaceFinalPDF Observer;
12

  
13
        private Cache()
14
        {
15

  
16
        }
17

  
18
        public static void Attach(InterfaceFinalPDF observer)
19
        {
20
            Observer = observer;
21
        }
22

  
23
        public static Cache GetInstance()
24
        {
25
            if (myInstance == null)
26
            {
27
                myInstance = new Cache();
28
            }
29
            return myInstance;
30
        }
31
        public FinalPDFResult SetFinalPDF(string ProjectNo, string FinalID)
32
        {
33
            return Observer.Notify(ProjectNo, FinalID);
34
        }
35
        //public Final
36

  
37
    }
38
}
IFinalPDF/IFinalPDF.csproj
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
  <PropertyGroup>
5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
    <ProjectGuid>{784438BE-2074-41AE-A692-24E1A4A67FE3}</ProjectGuid>
8
    <OutputType>Library</OutputType>
9
    <AppDesignerFolder>Properties</AppDesignerFolder>
10
    <RootNamespace>IFinalPDF</RootNamespace>
11
    <AssemblyName>IFinalPDF</AssemblyName>
12
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13
    <FileAlignment>512</FileAlignment>
14
  </PropertyGroup>
15
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16
    <DebugSymbols>true</DebugSymbols>
17
    <DebugType>full</DebugType>
18
    <Optimize>false</Optimize>
19
    <OutputPath>bin\Debug\</OutputPath>
20
    <DefineConstants>DEBUG;TRACE</DefineConstants>
21
    <ErrorReport>prompt</ErrorReport>
22
    <WarningLevel>4</WarningLevel>
23
  </PropertyGroup>
24
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25
    <DebugType>pdbonly</DebugType>
26
    <Optimize>true</Optimize>
27
    <OutputPath>bin\Release\</OutputPath>
28
    <DefineConstants>TRACE</DefineConstants>
29
    <ErrorReport>prompt</ErrorReport>
30
    <WarningLevel>4</WarningLevel>
31
  </PropertyGroup>
32
  <ItemGroup>
33
    <Reference Include="System" />
34
    <Reference Include="System.Core" />
35
    <Reference Include="System.Xml.Linq" />
36
    <Reference Include="System.Data.DataSetExtensions" />
37
    <Reference Include="Microsoft.CSharp" />
38
    <Reference Include="System.Data" />
39
    <Reference Include="System.Xml" />
40
  </ItemGroup>
41
  <ItemGroup>
42
    <Compile Include="Cache.cs" />
43
    <Compile Include="InterfaceFinalPDF.cs" />
44
    <Compile Include="Properties\AssemblyInfo.cs" />
45
    <Compile Include="RemFinalPDFObject.cs" />
46
  </ItemGroup>
47
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
48
</Project>
IFinalPDF/InterfaceFinalPDF.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

  
6
namespace IFinalPDF
7
{
8
    public interface InterfaceFinalPDF
9
    {
10

  
11
        FinalPDFResult Notify(string ProjectNo, string FinalID);
12

  
13
    }
14

  
15
    [Serializable]
16
    public struct FinalPDFResult
17
    {
18
        public string ProjectNo;
19
        public string FinalID;
20
        public int CurrentPage;
21
        public FinalStatus Status;
22
        public string Exception;
23
    }
24

  
25
    public enum FinalStatus
26
    {
27
        /// <summary>
28
        /// Final PDF를 만들기 위한 순서에 추가
29
        /// </summary>
30
        Insert = 0,
31

  
32
        /// <summary>
33
        /// 앞의 final이 처리중일때 대기
34
        /// </summary>
35
        Wait = 1,
36

  
37
        /// <summary>
38
        /// 만들고 있는중
39
        /// 이때 데이터베이스에 Current Page는 만들고 있는 페이지
40
        /// </summary>
41
        Create = 2,
42

  
43
        /// <summary>
44
        /// 만들고 있는중
45
        /// 이때 데이터베이스에 Current Page는 만들고 있는 페이지
46
        /// </summary>
47
        PdfStamp = 3,
48

  
49
        /// <summary>
50
        /// final pdf 완료시
51
        /// </summary>
52
        Success = 4,
53

  
54

  
55
        /// <summary>
56
        /// 에러
57
        /// </summary>
58
        Error = 5
59
    }
60
}
IFinalPDF/Properties/AssemblyInfo.cs
1
using System.Reflection;
2
using System.Runtime.CompilerServices;
3
using System.Runtime.InteropServices;
4

  
5
// General Information about an assembly is controlled through the following
6
// set of attributes. Change these attribute values to modify the information
7
// associated with an assembly.
8
[assembly: AssemblyTitle("IFinalPDF")]
9
[assembly: AssemblyDescription("")]
10
[assembly: AssemblyConfiguration("")]
11
[assembly: AssemblyCompany("")]
12
[assembly: AssemblyProduct("IFinalPDF")]
13
[assembly: AssemblyCopyright("Copyright ©  2018")]
14
[assembly: AssemblyTrademark("")]
15
[assembly: AssemblyCulture("")]
16

  
17
// Setting ComVisible to false makes the types in this assembly not visible
18
// to COM components.  If you need to access a type in this assembly from
19
// COM, set the ComVisible attribute to true on that type.
20
[assembly: ComVisible(false)]
21

  
22
// The following GUID is for the ID of the typelib if this project is exposed to COM
23
[assembly: Guid("784438be-2074-41ae-a692-24e1a4a67fe3")]
24

  
25
// Version information for an assembly consists of the following four values:
26
//
27
//      Major Version
28
//      Minor Version
29
//      Build Number
30
//      Revision
31
//
32
// You can specify all the values or you can default the Build and Revision Numbers
33
// by using the '*' as shown below:
34
// [assembly: AssemblyVersion("1.0.*")]
35
[assembly: AssemblyVersion("1.0.0.0")]
36
[assembly: AssemblyFileVersion("1.0.0.0")]
IFinalPDF/RemFinalPDFObject.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

  
6
namespace IFinalPDF
7
{
8
    public class RemFinalPDFObject : MarshalByRefObject
9
    {
10
        public RemFinalPDFObject()
11
        {
12

  
13
        }
14
        public FinalPDFResult SetFinalPDF(string ProjectNo, string FinalID)
15
        {
16
            return Cache.GetInstance().SetFinalPDF(ProjectNo, FinalID);
17
        }
18
    }
19
}
IKCOM/Interface.cs
131 131
        //public string SharePointItemID { get; set; }
132 132
        //public string BrowserPath { get; set; }
133 133
        public string DocNo { get; set; }
134
        public string EnsembleLink { get; set; }
134 135
        public bool IsSyncPossible { get; set; }
135 136
    }
136 137

  
......
152 153
        public int Data_Type { get; set; }
153 154
        public string ParsingMemo { get; set; }
154 155
        public string Symbol_ID { get; set; }
155
        public long Group_ID { get; set; }
156
        //public long Group_ID { get; set; }
156 157
    }
157 158
    public enum SERVICE_NAME
158 159
    {
KCOM.sln
22 22
EndProject
23 23
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CompareLib", "CompareLib\CompareLib.csproj", "{AB53FC3B-606B-499E-B2A8-ACDB3BCC2C98}"
24 24
EndProject
25
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IFinalPDF", "IFinalPDF\IFinalPDF.csproj", "{784438BE-2074-41AE-A692-24E1A4A67FE3}"
26
EndProject
27 25
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmartUpdate", "SmartUpdate\SmartUpdate.csproj", "{EA12FDC9-575E-471B-A691-3C31D03EA24C}"
28 26
EndProject
27
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IFinalPDF", "FinalService\KCOM_FinalService\IFinalPDF\IFinalPDF.csproj", "{784438BE-2074-41AE-A692-24E1A4A67FE3}"
28
EndProject
29 29
Global
30 30
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
31 31
		Debug|Any CPU = Debug|Any CPU
......
98 98
		{AB53FC3B-606B-499E-B2A8-ACDB3BCC2C98}.Release|Any CPU.Build.0 = Release|Any CPU
99 99
		{AB53FC3B-606B-499E-B2A8-ACDB3BCC2C98}.Release|x64.ActiveCfg = Release|Any CPU
100 100
		{AB53FC3B-606B-499E-B2A8-ACDB3BCC2C98}.Release|x64.Build.0 = Release|Any CPU
101
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
102
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
103
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|x64.ActiveCfg = Debug|Any CPU
104
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|x64.Build.0 = Debug|Any CPU
105
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
106
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|Any CPU.Build.0 = Release|Any CPU
107
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|x64.ActiveCfg = Release|Any CPU
108
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|x64.Build.0 = Release|Any CPU
109 101
		{EA12FDC9-575E-471B-A691-3C31D03EA24C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
110 102
		{EA12FDC9-575E-471B-A691-3C31D03EA24C}.Debug|Any CPU.Build.0 = Debug|Any CPU
111 103
		{EA12FDC9-575E-471B-A691-3C31D03EA24C}.Debug|x64.ActiveCfg = Debug|Any CPU
......
114 106
		{EA12FDC9-575E-471B-A691-3C31D03EA24C}.Release|Any CPU.Build.0 = Release|Any CPU
115 107
		{EA12FDC9-575E-471B-A691-3C31D03EA24C}.Release|x64.ActiveCfg = Release|Any CPU
116 108
		{EA12FDC9-575E-471B-A691-3C31D03EA24C}.Release|x64.Build.0 = Release|Any CPU
109
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
110
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
111
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|x64.ActiveCfg = Debug|Any CPU
112
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Debug|x64.Build.0 = Debug|Any CPU
113
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
114
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|Any CPU.Build.0 = Release|Any CPU
115
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|x64.ActiveCfg = Release|Any CPU
116
		{784438BE-2074-41AE-A692-24E1A4A67FE3}.Release|x64.Build.0 = Release|Any CPU
117 117
	EndGlobalSection
118 118
	GlobalSection(SolutionProperties) = preSolution
119 119
		HideSolutionNode = FALSE
KCOM/Connected Services/ServiceDeepView/Reference.cs
26 26
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))]
27 27
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))]
28 28
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))]
29
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA_GROUP))]
30 29
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))]
31 30
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
32 31
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
33 32
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))]
34 33
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))]
34
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FINAL_PDF))]
35
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.PROPERTIES))]
35 36
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))]
36 37
    public partial class StructuralObject : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
37 38
        
......
70 71
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))]
71 72
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))]
72 73
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))]
73
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA_GROUP))]
74 74
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))]
75 75
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
76 76
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
77 77
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))]
78 78
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))]
79
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FINAL_PDF))]
80
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.PROPERTIES))]
79 81
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))]
80 82
    public partial class EntityObject : KCOM.ServiceDeepView.StructuralObject {
81 83
        
......
217 219
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SIGN_INFO>))]
218 220
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))]
219 221
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER>))]
220
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA_GROUP))]
221 222
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))]
222 223
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
223 224
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
......
229 230
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM>))]
230 231
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.TALK))]
231 232
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.TALK>))]
233
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FINAL_PDF))]
234
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF>))]
235
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.PROPERTIES))]
236
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES>))]
232 237
    public partial class EntityKeyMember : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
233 238
        
234 239
        [System.NonSerializedAttribute()]
......
601 606
        
602 607
        KCOMDataModel.DataModel.DOCUMENT_ITEM EndGetDocumentItemInfo(System.IAsyncResult result);
603 608
        
609
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocItemID", ReplyAction="urn:ServiceDeepView/GetDocItemIDResponse")]
610
        string GetDocItemID(string ensemble_id);
611
        
612
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocItemID", ReplyAction="urn:ServiceDeepView/GetDocItemIDResponse")]
613
        System.IAsyncResult BeginGetDocItemID(string ensemble_id, System.AsyncCallback callback, object asyncState);
614
        
615
        string EndGetDocItemID(System.IAsyncResult result);
616
        
604 617
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsResponse")]
605 618
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId);
606 619
        
......
657 670
        
658 671
        bool EndSaveMarkupData(System.IAsyncResult result);
659 672
        
660
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMarkupDataGroup", ReplyAction="urn:ServiceDeepView/AddMarkupDataGroupResponse")]
661
        long AddMarkupDataGroup(KCOMDataModel.DataModel.MARKUP_DATA_GROUP mARKUP_DATA_GROUP, string ProjectNo);
662
        
663
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMarkupDataGroup", ReplyAction="urn:ServiceDeepView/AddMarkupDataGroupResponse")]
664
        System.IAsyncResult BeginAddMarkupDataGroup(KCOMDataModel.DataModel.MARKUP_DATA_GROUP mARKUP_DATA_GROUP, string ProjectNo, System.AsyncCallback callback, object asyncState);
665
        
666
        long EndAddMarkupDataGroup(System.IAsyncResult result);
667
        
668
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/UpdateMarkupDataGroup", ReplyAction="urn:ServiceDeepView/UpdateMarkupDataGroupResponse")]
669
        bool UpdateMarkupDataGroup(long Group_ID, string ProjectNo);
670
        
671
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/UpdateMarkupDataGroup", ReplyAction="urn:ServiceDeepView/UpdateMarkupDataGroupResponse")]
672
        System.IAsyncResult BeginUpdateMarkupDataGroup(long Group_ID, string ProjectNo, System.AsyncCallback callback, object asyncState);
673
        
674
        bool EndUpdateMarkupDataGroup(System.IAsyncResult result);
675
        
676 673
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/UpdateMarkupData", ReplyAction="urn:ServiceDeepView/UpdateMarkupDataResponse")]
677 674
        bool UpdateMarkupData(string CommentID, long Group_ID, string ProjectNo);
678 675
        
......
976 973
        System.IAsyncResult BeginGetMessage(string project_no, string doc_id, System.AsyncCallback callback, object asyncState);
977 974
        
978 975
        System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> EndGetMessage(System.IAsyncResult result);
976
        
977
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetDocinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocinfoResponse")]
978
        KCOMDataModel.DataModel.DOCINFO FinalPDF_GetDocinfo(string project_no, string docinfo_id);
979
        
980
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetDocinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocinfoResponse")]
981
        System.IAsyncResult BeginFinalPDF_GetDocinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
982
        
983
        KCOMDataModel.DataModel.DOCINFO EndFinalPDF_GetDocinfo(System.IAsyncResult result);
984
        
985
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetDocumentItem", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocumentItemResponse")]
986
        KCOMDataModel.DataModel.DOCUMENT_ITEM FinalPDF_GetDocumentItem(string project_no, string document_id);
987
        
988
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetDocumentItem", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocumentItemResponse")]
989
        System.IAsyncResult BeginFinalPDF_GetDocumentItem(string project_no, string document_id, System.AsyncCallback callback, object asyncState);
990
        
991
        KCOMDataModel.DataModel.DOCUMENT_ITEM EndFinalPDF_GetDocumentItem(System.IAsyncResult result);
992
        
993
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetMarkupdata", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupdataResponse")]
994
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> FinalPDF_GetMarkupdata(string project_no, string docinfo_id);
995
        
996
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetMarkupdata", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupdataResponse")]
997
        System.IAsyncResult BeginFinalPDF_GetMarkupdata(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
998
        
999
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndFinalPDF_GetMarkupdata(System.IAsyncResult result);
1000
        
1001
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetMarkupinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupinfoResponse")]
1002
        KCOMDataModel.DataModel.MARKUP_INFO FinalPDF_GetMarkupinfo(string project_no, string docinfo_id);
1003
        
1004
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetMarkupinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupinfoResponse")]
1005
        System.IAsyncResult BeginFinalPDF_GetMarkupinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
1006
        
1007
        KCOMDataModel.DataModel.MARKUP_INFO EndFinalPDF_GetMarkupinfo(System.IAsyncResult result);
1008
        
1009
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetFinalPDFs", ReplyAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFsResponse")]
1010
        System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> FinalPDF_GetFinalPDFs(string final_id);
1011
        
1012
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetFinalPDFs", ReplyAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFsResponse")]
1013
        System.IAsyncResult BeginFinalPDF_GetFinalPDFs(string final_id, System.AsyncCallback callback, object asyncState);
1014
        
1015
        System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> EndFinalPDF_GetFinalPDFs(System.IAsyncResult result);
1016
        
1017
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetDocpage", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocpageResponse")]
1018
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> FinalPDF_GetDocpage(string project_no, string docinfo_id);
1019
        
1020
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetDocpage", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocpageResponse")]
1021
        System.IAsyncResult BeginFinalPDF_GetDocpage(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
1022
        
1023
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> EndFinalPDF_GetDocpage(System.IAsyncResult result);
1024
        
1025
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatus", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatusResponse")]
1026
        bool FinalPDF_SetFinalPDFStatus(string final_id, KCOM.ServiceDeepView.FinalStatus status);
1027
        
1028
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatus", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatusResponse")]
1029
        System.IAsyncResult BeginFinalPDF_SetFinalPDFStatus(string final_id, KCOM.ServiceDeepView.FinalStatus status, System.AsyncCallback callback, object asyncState);
1030
        
1031
        bool EndFinalPDF_SetFinalPDFStatus(System.IAsyncResult result);
1032
        
1033
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetCurrentPage", ReplyAction="urn:ServiceDeepView/FinalPDF_SetCurrentPageResponse")]
1034
        bool FinalPDF_SetCurrentPage(string final_id, int currentpage);
1035
        
1036
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetCurrentPage", ReplyAction="urn:ServiceDeepView/FinalPDF_SetCurrentPageResponse")]
1037
        System.IAsyncResult BeginFinalPDF_SetCurrentPage(string final_id, int currentpage, System.AsyncCallback callback, object asyncState);
1038
        
1039
        bool EndFinalPDF_SetCurrentPage(System.IAsyncResult result);
1040
        
1041
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetError", ReplyAction="urn:ServiceDeepView/FinalPDF_SetErrorResponse")]
1042
        bool FinalPDF_SetError(string final_id, string msg);
1043
        
1044
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetError", ReplyAction="urn:ServiceDeepView/FinalPDF_SetErrorResponse")]
1045
        System.IAsyncResult BeginFinalPDF_SetError(string final_id, string msg, System.AsyncCallback callback, object asyncState);
1046
        
1047
        bool EndFinalPDF_SetError(System.IAsyncResult result);
1048
        
1049
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetFinalResultPath", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalResultPathResponse")]
1050
        bool FinalPDF_SetFinalResultPath(string project_no, string document_id, string url);
1051
        
1052
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetFinalResultPath", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalResultPathResponse")]
1053
        System.IAsyncResult BeginFinalPDF_SetFinalResultPath(string project_no, string document_id, string url, System.AsyncCallback callback, object asyncState);
1054
        
1055
        bool EndFinalPDF_SetFinalResultPath(System.IAsyncResult result);
1056
        
1057
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetCommentMember", ReplyAction="urn:ServiceDeepView/FinalPDF_GetCommentMemberResponse")]
1058
        KCOMDataModel.DataModel.MEMBER FinalPDF_GetCommentMember(string project_no, string markupdata_id);
1059
        
1060
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetCommentMember", ReplyAction="urn:ServiceDeepView/FinalPDF_GetCommentMemberResponse")]
1061
        System.IAsyncResult BeginFinalPDF_GetCommentMember(string project_no, string markupdata_id, System.AsyncCallback callback, object asyncState);
1062
        
1063
        KCOMDataModel.DataModel.MEMBER EndFinalPDF_GetCommentMember(System.IAsyncResult result);
1064
        
1065
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetProperties", ReplyAction="urn:ServiceDeepView/FinalPDF_GetPropertiesResponse")]
1066
        System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> FinalPDF_GetProperties(string project_no);
1067
        
1068
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetProperties", ReplyAction="urn:ServiceDeepView/FinalPDF_GetPropertiesResponse")]
1069
        System.IAsyncResult BeginFinalPDF_GetProperties(string project_no, System.AsyncCallback callback, object asyncState);
1070
        
1071
        System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> EndFinalPDF_GetProperties(System.IAsyncResult result);
979 1072
    }
980 1073
    
981 1074
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
......
1212 1305
    
1213 1306
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1214 1307
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1308
    public partial class GetDocItemIDCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1309
        
1310
        private object[] results;
1311
        
1312
        public GetDocItemIDCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1313
                base(exception, cancelled, userState) {
1314
            this.results = results;
1315
        }
1316
        
1317
        public string Result {
1318
            get {
1319
                base.RaiseExceptionIfNecessary();
1320
                return ((string)(this.results[0]));
1321
            }
1322
        }
1323
    }
1324
    
1325
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1326
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1215 1327
    public partial class GetMarkupInfoItemsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1216 1328
        
1217 1329
        private object[] results;
......
1345 1457
    
1346 1458
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1347 1459
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1348
    public partial class AddMarkupDataGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1349
        
1350
        private object[] results;
1351
        
1352
        public AddMarkupDataGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1353
                base(exception, cancelled, userState) {
1354
            this.results = results;
1355
        }
1356
        
1357
        public long Result {
1358
            get {
1359
                base.RaiseExceptionIfNecessary();
1360
                return ((long)(this.results[0]));
1361
            }
1362
        }
1363
    }
1364
    
1365
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1366
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1367
    public partial class UpdateMarkupDataGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1368
        
1369
        private object[] results;
1370
        
1371
        public UpdateMarkupDataGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1372
                base(exception, cancelled, userState) {
1373
            this.results = results;
1374
        }
1375
        
1376
        public bool Result {
1377
            get {
1378
                base.RaiseExceptionIfNecessary();
1379
                return ((bool)(this.results[0]));
1380
            }
1381
        }
1382
    }
1383
    
1384
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1385
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1386 1460
    public partial class UpdateMarkupDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1387 1461
        
1388 1462
        private object[] results;
......
2105 2179
    
2106 2180
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2107 2181
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2108
    public partial class ServiceDeepViewClient : System.ServiceModel.ClientBase<KCOM.ServiceDeepView.ServiceDeepView>, KCOM.ServiceDeepView.ServiceDeepView {
2109
        
2110
        private BeginOperationDelegate onBeginGetSystemDataDelegate;
2111
        
2112
        private EndOperationDelegate onEndGetSystemDataDelegate;
2113
        
2114
        private System.Threading.SendOrPostCallback onGetSystemDataCompletedDelegate;
2182
    public partial class FinalPDF_GetDocinfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2115 2183
        
2116
        private BeginOperationDelegate onBeginGetFavoriteVPDelegate;
2184
        private object[] results;
2117 2185
        
2118
        private EndOperationDelegate onEndGetFavoriteVPDelegate;
2186
        public FinalPDF_GetDocinfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2187
                base(exception, cancelled, userState) {
2188
            this.results = results;
2189
        }
2119 2190
        
2120
        private System.Threading.SendOrPostCallback onGetFavoriteVPCompletedDelegate;
2191
        public KCOMDataModel.DataModel.DOCINFO Result {
2192
            get {
2193
                base.RaiseExceptionIfNecessary();
2194
                return ((KCOMDataModel.DataModel.DOCINFO)(this.results[0]));
2195
            }
2196
        }
2197
    }
2198
    
2199
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2200
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2201
    public partial class FinalPDF_GetDocumentItemCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2121 2202
        
2122
        private BeginOperationDelegate onBeginEditFavoriteVPDelegate;
2203
        private object[] results;
2123 2204
        
2124
        private EndOperationDelegate onEndEditFavoriteVPDelegate;
2205
        public FinalPDF_GetDocumentItemCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2206
                base(exception, cancelled, userState) {
2207
            this.results = results;
2208
        }
2125 2209
        
2126
        private System.Threading.SendOrPostCallback onEditFavoriteVPCompletedDelegate;
2210
        public KCOMDataModel.DataModel.DOCUMENT_ITEM Result {
2211
            get {
2212
                base.RaiseExceptionIfNecessary();
2213
                return ((KCOMDataModel.DataModel.DOCUMENT_ITEM)(this.results[0]));
2214
            }
2215
        }
2216
    }
2217
    
2218
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2219
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2220
    public partial class FinalPDF_GetMarkupdataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2127 2221
        
2128
        private BeginOperationDelegate onBeginDelFavoriteVPDelegate;
2222
        private object[] results;
2129 2223
        
2130
        private EndOperationDelegate onEndDelFavoriteVPDelegate;
2224
        public FinalPDF_GetMarkupdataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2225
                base(exception, cancelled, userState) {
2226
            this.results = results;
2227
        }
2131 2228
        
2132
        private System.Threading.SendOrPostCallback onDelFavoriteVPCompletedDelegate;
2229
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> Result {
2230
            get {
2231
                base.RaiseExceptionIfNecessary();
2232
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>)(this.results[0]));
2233
            }
2234
        }
2235
    }
2236
    
2237
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2238
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2239
    public partial class FinalPDF_GetMarkupinfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2133 2240
        
2134
        private BeginOperationDelegate onBeginGetCompareRectDelegate;
2241
        private object[] results;
2135 2242
        
2136
        private EndOperationDelegate onEndGetCompareRectDelegate;
2243
        public FinalPDF_GetMarkupinfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2244
                base(exception, cancelled, userState) {
2245
            this.results = results;
2246
        }
2137 2247
        
2138
        private System.Threading.SendOrPostCallback onGetCompareRectCompletedDelegate;
2248
        public KCOMDataModel.DataModel.MARKUP_INFO Result {
2249
            get {
2250
                base.RaiseExceptionIfNecessary();
2251
                return ((KCOMDataModel.DataModel.MARKUP_INFO)(this.results[0]));
2252
            }
2253
        }
2254
    }
2255
    
2256
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2257
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2258
    public partial class FinalPDF_GetFinalPDFsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2139 2259
        
2140
        private BeginOperationDelegate onBeginSetFinalPDFDelegate;
2260
        private object[] results;
2141 2261
        
2142
        private EndOperationDelegate onEndSetFinalPDFDelegate;
2262
        public FinalPDF_GetFinalPDFsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2263
                base(exception, cancelled, userState) {
2264
            this.results = results;
2265
        }
2143 2266
        
2144
        private System.Threading.SendOrPostCallback onSetFinalPDFCompletedDelegate;
2267
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> Result {
2268
            get {
2269
                base.RaiseExceptionIfNecessary();
2270
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF>)(this.results[0]));
2271
            }
2272
        }
2273
    }
2274
    
2275
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2276
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2277
    public partial class FinalPDF_GetDocpageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2145 2278
        
2146
        private BeginOperationDelegate onBeginGetConversionStateDelegate;
2279
        private object[] results;
2147 2280
        
2148
        private EndOperationDelegate onEndGetConversionStateDelegate;
2281
        public FinalPDF_GetDocpageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2282
                base(exception, cancelled, userState) {
2283
            this.results = results;
2284
        }
2149 2285
        
2150
        private System.Threading.SendOrPostCallback onGetConversionStateCompletedDelegate;
2286
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> Result {
2287
            get {
2288
                base.RaiseExceptionIfNecessary();
2289
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE>)(this.results[0]));
2290
            }
2291
        }
2292
    }
2293
    
2294
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2295
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2296
    public partial class FinalPDF_SetFinalPDFStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2151 2297
        
2152
        private BeginOperationDelegate onBeginGetVPRevisionHistoryDelegate;
2298
        private object[] results;
2153 2299
        
2154
        private EndOperationDelegate onEndGetVPRevisionHistoryDelegate;
2300
        public FinalPDF_SetFinalPDFStatusCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2301
                base(exception, cancelled, userState) {
2302
            this.results = results;
2303
        }
2155 2304
        
2156
        private System.Threading.SendOrPostCallback onGetVPRevisionHistoryCompletedDelegate;
2305
        public bool Result {
2306
            get {
2307
                base.RaiseExceptionIfNecessary();
2308
                return ((bool)(this.results[0]));
2309
            }
2310
        }
2311
    }
2312
    
2313
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2314
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2315
    public partial class FinalPDF_SetCurrentPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2157 2316
        
2158
        private BeginOperationDelegate onBeginGetVPRevisionFirstOrDefaultDelegate;
2317
        private object[] results;
2159 2318
        
2160
        private EndOperationDelegate onEndGetVPRevisionFirstOrDefaultDelegate;
2319
        public FinalPDF_SetCurrentPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2320
                base(exception, cancelled, userState) {
2321
            this.results = results;
2322
        }
2161 2323
        
2162
        private System.Threading.SendOrPostCallback onGetVPRevisionFirstOrDefaultCompletedDelegate;
2324
        public bool Result {
2325
            get {
2326
                base.RaiseExceptionIfNecessary();
2327
                return ((bool)(this.results[0]));
2328
            }
2329
        }
2330
    }
2331
    
2332
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2333
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2334
    public partial class FinalPDF_SetErrorCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2163 2335
        
2164
        private BeginOperationDelegate onBeginGetDocInfoDelegate;
2336
        private object[] results;
2165 2337
        
2166
        private EndOperationDelegate onEndGetDocInfoDelegate;
2338
        public FinalPDF_SetErrorCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2339
                base(exception, cancelled, userState) {
2340
            this.results = results;
2341
        }
2167 2342
        
2168
        private System.Threading.SendOrPostCallback onGetDocInfoCompletedDelegate;
2343
        public bool Result {
2344
            get {
2345
                base.RaiseExceptionIfNecessary();
2346
                return ((bool)(this.results[0]));
2347
            }
2348
        }
2349
    }
2350
    
2351
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2352
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2353
    public partial class FinalPDF_SetFinalResultPathCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2169 2354
        
2170
        private BeginOperationDelegate onBeginGetCheckSystemAdminDelegate;
2355
        private object[] results;
2171 2356
        
2172
        private EndOperationDelegate onEndGetCheckSystemAdminDelegate;
2357
        public FinalPDF_SetFinalResultPathCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2358
                base(exception, cancelled, userState) {
2359
            this.results = results;
2360
        }
2361
        
2362
        public bool Result {
2363
            get {
2364
                base.RaiseExceptionIfNecessary();
2365
                return ((bool)(this.results[0]));
2366
            }
2367
        }
2368
    }
2369
    
2370
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2371
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2372
    public partial class FinalPDF_GetCommentMemberCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2373
        
2374
        private object[] results;
2375
        
2376
        public FinalPDF_GetCommentMemberCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2377
                base(exception, cancelled, userState) {
2378
            this.results = results;
2379
        }
2380
        
2381
        public KCOMDataModel.DataModel.MEMBER Result {
2382
            get {
2383
                base.RaiseExceptionIfNecessary();
2384
                return ((KCOMDataModel.DataModel.MEMBER)(this.results[0]));
2385
            }
2386
        }
2387
    }
2388
    
2389
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2390
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2391
    public partial class FinalPDF_GetPropertiesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2392
        
2393
        private object[] results;
2394
        
2395
        public FinalPDF_GetPropertiesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2396
                base(exception, cancelled, userState) {
2397
            this.results = results;
2398
        }
2399
        
2400
        public System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> Result {
2401
            get {
2402
                base.RaiseExceptionIfNecessary();
2403
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES>)(this.results[0]));
2404
            }
2405
        }
2406
    }
2407
    
2408
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2409
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2410
    public partial class ServiceDeepViewClient : System.ServiceModel.ClientBase<KCOM.ServiceDeepView.ServiceDeepView>, KCOM.ServiceDeepView.ServiceDeepView {
2411
        
2412
        private BeginOperationDelegate onBeginGetSystemDataDelegate;
2413
        
2414
        private EndOperationDelegate onEndGetSystemDataDelegate;
2415
        
2416
        private System.Threading.SendOrPostCallback onGetSystemDataCompletedDelegate;
2417
        
2418
        private BeginOperationDelegate onBeginGetFavoriteVPDelegate;
2419
        
2420
        private EndOperationDelegate onEndGetFavoriteVPDelegate;
2421
        
2422
        private System.Threading.SendOrPostCallback onGetFavoriteVPCompletedDelegate;
2423
        
2424
        private BeginOperationDelegate onBeginEditFavoriteVPDelegate;
2425
        
2426
        private EndOperationDelegate onEndEditFavoriteVPDelegate;
2427
        
2428
        private System.Threading.SendOrPostCallback onEditFavoriteVPCompletedDelegate;
2429
        
2430
        private BeginOperationDelegate onBeginDelFavoriteVPDelegate;
2431
        
2432
        private EndOperationDelegate onEndDelFavoriteVPDelegate;
2433
        
2434
        private System.Threading.SendOrPostCallback onDelFavoriteVPCompletedDelegate;
2435
        
2436
        private BeginOperationDelegate onBeginGetCompareRectDelegate;
2437
        
2438
        private EndOperationDelegate onEndGetCompareRectDelegate;
2439
        
2440
        private System.Threading.SendOrPostCallback onGetCompareRectCompletedDelegate;
2441
        
2442
        private BeginOperationDelegate onBeginSetFinalPDFDelegate;
2443
        
2444
        private EndOperationDelegate onEndSetFinalPDFDelegate;
2445
        
2446
        private System.Threading.SendOrPostCallback onSetFinalPDFCompletedDelegate;
2447
        
2448
        private BeginOperationDelegate onBeginGetConversionStateDelegate;
2449
        
2450
        private EndOperationDelegate onEndGetConversionStateDelegate;
2451
        
2452
        private System.Threading.SendOrPostCallback onGetConversionStateCompletedDelegate;
2453
        
2454
        private BeginOperationDelegate onBeginGetVPRevisionHistoryDelegate;
2455
        
2456
        private EndOperationDelegate onEndGetVPRevisionHistoryDelegate;
2457
        
2458
        private System.Threading.SendOrPostCallback onGetVPRevisionHistoryCompletedDelegate;
2459
        
2460
        private BeginOperationDelegate onBeginGetVPRevisionFirstOrDefaultDelegate;
2461
        
2462
        private EndOperationDelegate onEndGetVPRevisionFirstOrDefaultDelegate;
2463
        
2464
        private System.Threading.SendOrPostCallback onGetVPRevisionFirstOrDefaultCompletedDelegate;
2465
        
2466
        private BeginOperationDelegate onBeginGetDocInfoDelegate;
2467
        
2468
        private EndOperationDelegate onEndGetDocInfoDelegate;
2469
        
2470
        private System.Threading.SendOrPostCallback onGetDocInfoCompletedDelegate;
2471
        
2472
        private BeginOperationDelegate onBeginGetCheckSystemAdminDelegate;
2473
        
2474
        private EndOperationDelegate onEndGetCheckSystemAdminDelegate;
2173 2475
        
2174 2476
        private System.Threading.SendOrPostCallback onGetCheckSystemAdminCompletedDelegate;
2175 2477
        
......
2179 2481
        
2180 2482
        private System.Threading.SendOrPostCallback onGetDocumentItemInfoCompletedDelegate;
2181 2483
        
2484
        private BeginOperationDelegate onBeginGetDocItemIDDelegate;
2485
        
2486
        private EndOperationDelegate onEndGetDocItemIDDelegate;
2487
        
2488
        private System.Threading.SendOrPostCallback onGetDocItemIDCompletedDelegate;
2489
        
2182 2490
        private BeginOperationDelegate onBeginGetMarkupInfoItemsDelegate;
2183 2491
        
2184 2492
        private EndOperationDelegate onEndGetMarkupInfoItemsDelegate;
......
2221 2529
        
2222 2530
        private System.Threading.SendOrPostCallback onSaveMarkupDataCompletedDelegate;
2223 2531
        
2224
        private BeginOperationDelegate onBeginAddMarkupDataGroupDelegate;
2225
        
2226
        private EndOperationDelegate onEndAddMarkupDataGroupDelegate;
2227
        
2228
        private System.Threading.SendOrPostCallback onAddMarkupDataGroupCompletedDelegate;
2229
        
2230
        private BeginOperationDelegate onBeginUpdateMarkupDataGroupDelegate;
2231
        
2232
        private EndOperationDelegate onEndUpdateMarkupDataGroupDelegate;
2233
        
2234
        private System.Threading.SendOrPostCallback onUpdateMarkupDataGroupCompletedDelegate;
2235
        
2236 2532
        private BeginOperationDelegate onBeginUpdateMarkupDataDelegate;
2237 2533
        
2238 2534
        private EndOperationDelegate onEndUpdateMarkupDataDelegate;
......
2461 2757
        
2462 2758
        private System.Threading.SendOrPostCallback onGetMessageCompletedDelegate;
2463 2759
        
2760
        private BeginOperationDelegate onBeginFinalPDF_GetDocinfoDelegate;
2761
        
2762
        private EndOperationDelegate onEndFinalPDF_GetDocinfoDelegate;
2763
        
2764
        private System.Threading.SendOrPostCallback onFinalPDF_GetDocinfoCompletedDelegate;
2765
        
2766
        private BeginOperationDelegate onBeginFinalPDF_GetDocumentItemDelegate;
2767
        
2768
        private EndOperationDelegate onEndFinalPDF_GetDocumentItemDelegate;
2769
        
2770
        private System.Threading.SendOrPostCallback onFinalPDF_GetDocumentItemCompletedDelegate;
2771
        
2772
        private BeginOperationDelegate onBeginFinalPDF_GetMarkupdataDelegate;
2773
        
2774
        private EndOperationDelegate onEndFinalPDF_GetMarkupdataDelegate;
2775
        
2776
        private System.Threading.SendOrPostCallback onFinalPDF_GetMarkupdataCompletedDelegate;
2777
        
2778
        private BeginOperationDelegate onBeginFinalPDF_GetMarkupinfoDelegate;
2779
        
2780
        private EndOperationDelegate onEndFinalPDF_GetMarkupinfoDelegate;
2781
        
2782
        private System.Threading.SendOrPostCallback onFinalPDF_GetMarkupinfoCompletedDelegate;
2783
        
2784
        private BeginOperationDelegate onBeginFinalPDF_GetFinalPDFsDelegate;
2785
        
2786
        private EndOperationDelegate onEndFinalPDF_GetFinalPDFsDelegate;
2787
        
2788
        private System.Threading.SendOrPostCallback onFinalPDF_GetFinalPDFsCompletedDelegate;
2789
        
2790
        private BeginOperationDelegate onBeginFinalPDF_GetDocpageDelegate;
2791
        
2792
        private EndOperationDelegate onEndFinalPDF_GetDocpageDelegate;
2793
        
2794
        private System.Threading.SendOrPostCallback onFinalPDF_GetDocpageCompletedDelegate;
2795
        
2796
        private BeginOperationDelegate onBeginFinalPDF_SetFinalPDFStatusDelegate;
2797
        
2798
        private EndOperationDelegate onEndFinalPDF_SetFinalPDFStatusDelegate;
2799
        
2800
        private System.Threading.SendOrPostCallback onFinalPDF_SetFinalPDFStatusCompletedDelegate;
2801
        
2802
        private BeginOperationDelegate onBeginFinalPDF_SetCurrentPageDelegate;
2803
        
2804
        private EndOperationDelegate onEndFinalPDF_SetCurrentPageDelegate;
2805
        
2806
        private System.Threading.SendOrPostCallback onFinalPDF_SetCurrentPageCompletedDelegate;
2807
        
2808
        private BeginOperationDelegate onBeginFinalPDF_SetErrorDelegate;
2809
        
2810
        private EndOperationDelegate onEndFinalPDF_SetErrorDelegate;
2811
        
2812
        private System.Threading.SendOrPostCallback onFinalPDF_SetErrorCompletedDelegate;
2813
        
2814
        private BeginOperationDelegate onBeginFinalPDF_SetFinalResultPathDelegate;
2815
        
2816
        private EndOperationDelegate onEndFinalPDF_SetFinalResultPathDelegate;
2817
        
2818
        private System.Threading.SendOrPostCallback onFinalPDF_SetFinalResultPathCompletedDelegate;
2819
        
2820
        private BeginOperationDelegate onBeginFinalPDF_GetCommentMemberDelegate;
2821
        
2822
        private EndOperationDelegate onEndFinalPDF_GetCommentMemberDelegate;
2823
        
2824
        private System.Threading.SendOrPostCallback onFinalPDF_GetCommentMemberCompletedDelegate;
2825
        
2826
        private BeginOperationDelegate onBeginFinalPDF_GetPropertiesDelegate;
2827
        
2828
        private EndOperationDelegate onEndFinalPDF_GetPropertiesDelegate;
2829
        
2830
        private System.Threading.SendOrPostCallback onFinalPDF_GetPropertiesCompletedDelegate;
2831
        
2464 2832
        public ServiceDeepViewClient() {
2465 2833
        }
2466 2834
        
......
2504 2872
        
2505 2873
        public event System.EventHandler<GetDocumentItemInfoCompletedEventArgs> GetDocumentItemInfoCompleted;
2506 2874
        
2875
        public event System.EventHandler<GetDocItemIDCompletedEventArgs> GetDocItemIDCompleted;
2876
        
2507 2877
        public event System.EventHandler<GetMarkupInfoItemsCompletedEventArgs> GetMarkupInfoItemsCompleted;
2508 2878
        
2509 2879
        public event System.EventHandler<GetSyncMarkupInfoItemsCompletedEventArgs> GetSyncMarkupInfoItemsCompleted;
......
2518 2888
        
2519 2889
        public event System.EventHandler<SaveMarkupDataCompletedEventArgs> SaveMarkupDataCompleted;
2520 2890
        
2521
        public event System.EventHandler<AddMarkupDataGroupCompletedEventArgs> AddMarkupDataGroupCompleted;
2522
        
2523
        public event System.EventHandler<UpdateMarkupDataGroupCompletedEventArgs> UpdateMarkupDataGroupCompleted;
2524
        
2525 2891
        public event System.EventHandler<UpdateMarkupDataCompletedEventArgs> UpdateMarkupDataCompleted;
2526 2892
        
2527 2893
        public event System.EventHandler<SaveSymbolCompletedEventArgs> SaveSymbolCompleted;
......
2598 2964
        
2599 2965
        public event System.EventHandler<GetMessageCompletedEventArgs> GetMessageCompleted;
2600 2966
        
2967
        public event System.EventHandler<FinalPDF_GetDocinfoCompletedEventArgs> FinalPDF_GetDocinfoCompleted;
2968
        
2969
        public event System.EventHandler<FinalPDF_GetDocumentItemCompletedEventArgs> FinalPDF_GetDocumentItemCompleted;
2970
        
2971
        public event System.EventHandler<FinalPDF_GetMarkupdataCompletedEventArgs> FinalPDF_GetMarkupdataCompleted;
2972
        
2973
        public event System.EventHandler<FinalPDF_GetMarkupinfoCompletedEventArgs> FinalPDF_GetMarkupinfoCompleted;
2974
        
2975
        public event System.EventHandler<FinalPDF_GetFinalPDFsCompletedEventArgs> FinalPDF_GetFinalPDFsCompleted;
2976
        
2977
        public event System.EventHandler<FinalPDF_GetDocpageCompletedEventArgs> FinalPDF_GetDocpageCompleted;
2978
        
2979
        public event System.EventHandler<FinalPDF_SetFinalPDFStatusCompletedEventArgs> FinalPDF_SetFinalPDFStatusCompleted;
2980
        
2981
        public event System.EventHandler<FinalPDF_SetCurrentPageCompletedEventArgs> FinalPDF_SetCurrentPageCompleted;
2982
        
2983
        public event System.EventHandler<FinalPDF_SetErrorCompletedEventArgs> FinalPDF_SetErrorCompleted;
2984
        
2985
        public event System.EventHandler<FinalPDF_SetFinalResultPathCompletedEventArgs> FinalPDF_SetFinalResultPathCompleted;
2986
        
2987
        public event System.EventHandler<FinalPDF_GetCommentMemberCompletedEventArgs> FinalPDF_GetCommentMemberCompleted;
2988
        
2989
        public event System.EventHandler<FinalPDF_GetPropertiesCompletedEventArgs> FinalPDF_GetPropertiesCompleted;
2990
        
2601 2991
        public IKCOM.KCOM_SystemInfo GetSystemData() {
2602 2992
            return base.Channel.GetSystemData();
2603 2993
        }
......
3236 3626
                        param}, this.onEndGetDocumentItemInfoDelegate, this.onGetDocumentItemInfoCompletedDelegate, userState);
3237 3627
        }
3238 3628
        
3629
        public string GetDocItemID(string ensemble_id) {
3630
            return base.Channel.GetDocItemID(ensemble_id);
3631
        }
3632
        
3633
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3634
        public System.IAsyncResult BeginGetDocItemID(string ensemble_id, System.AsyncCallback callback, object asyncState) {
3635
            return base.Channel.BeginGetDocItemID(ensemble_id, callback, asyncState);
3636
        }
3637
        
3638
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3639
        public string EndGetDocItemID(System.IAsyncResult result) {
3640
            return base.Channel.EndGetDocItemID(result);
3641
        }
3642
        
3643
        private System.IAsyncResult OnBeginGetDocItemID(object[] inValues, System.AsyncCallback callback, object asyncState) {
3644
            string ensemble_id = ((string)(inValues[0]));
3645
            return this.BeginGetDocItemID(ensemble_id, callback, asyncState);
3646
        }
3647
        
3648
        private object[] OnEndGetDocItemID(System.IAsyncResult result) {
3649
            string retVal = this.EndGetDocItemID(result);
3650
            return new object[] {
3651
                    retVal};
3652
        }
3653
        
3654
        private void OnGetDocItemIDCompleted(object state) {
3655
            if ((this.GetDocItemIDCompleted != null)) {
3656
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3657
                this.GetDocItemIDCompleted(this, new GetDocItemIDCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3658
            }
3659
        }
3660
        
3661
        public void GetDocItemIDAsync(string ensemble_id) {
3662
            this.GetDocItemIDAsync(ensemble_id, null);
3663
        }
3664
        
3665
        public void GetDocItemIDAsync(string ensemble_id, object userState) {
3666
            if ((this.onBeginGetDocItemIDDelegate == null)) {
3667
                this.onBeginGetDocItemIDDelegate = new BeginOperationDelegate(this.OnBeginGetDocItemID);
3668
            }
3669
            if ((this.onEndGetDocItemIDDelegate == null)) {
3670
                this.onEndGetDocItemIDDelegate = new EndOperationDelegate(this.OnEndGetDocItemID);
3671
            }
3672
            if ((this.onGetDocItemIDCompletedDelegate == null)) {
3673
                this.onGetDocItemIDCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocItemIDCompleted);
3674
            }
3675
            base.InvokeAsync(this.onBeginGetDocItemIDDelegate, new object[] {
3676
                        ensemble_id}, this.onEndGetDocItemIDDelegate, this.onGetDocItemIDCompletedDelegate, userState);
3677
        }
3678
        
3239 3679
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId) {
3240 3680
            return base.Channel.GetMarkupInfoItems(ProjectNo, DocInfoId);
3241 3681
        }
......
3620 4060
                        mlmarkup_data}, this.onEndSaveMarkupDataDelegate, this.onSaveMarkupDataCompletedDelegate, userState1);
3621 4061
        }
3622 4062
        
3623
        public long AddMarkupDataGroup(KCOMDataModel.DataModel.MARKUP_DATA_GROUP mARKUP_DATA_GROUP, string ProjectNo) {
3624
            return base.Channel.AddMarkupDataGroup(mARKUP_DATA_GROUP, ProjectNo);
3625
        }
3626
        
3627
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3628
        public System.IAsyncResult BeginAddMarkupDataGroup(KCOMDataModel.DataModel.MARKUP_DATA_GROUP mARKUP_DATA_GROUP, string ProjectNo, System.AsyncCallback callback, object asyncState) {
3629
            return base.Channel.BeginAddMarkupDataGroup(mARKUP_DATA_GROUP, ProjectNo, callback, asyncState);
3630
        }
3631
        
3632
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3633
        public long EndAddMarkupDataGroup(System.IAsyncResult result) {
3634
            return base.Channel.EndAddMarkupDataGroup(result);
3635
        }
3636
        
3637
        private System.IAsyncResult OnBeginAddMarkupDataGroup(object[] inValues, System.AsyncCallback callback, object asyncState) {
3638
            KCOMDataModel.DataModel.MARKUP_DATA_GROUP mARKUP_DATA_GROUP = ((KCOMDataModel.DataModel.MARKUP_DATA_GROUP)(inValues[0]));
3639
            string ProjectNo = ((string)(inValues[1]));
3640
            return this.BeginAddMarkupDataGroup(mARKUP_DATA_GROUP, ProjectNo, callback, asyncState);
3641
        }
3642
        
3643
        private object[] OnEndAddMarkupDataGroup(System.IAsyncResult result) {
3644
            long retVal = this.EndAddMarkupDataGroup(result);
3645
            return new object[] {
3646
                    retVal};
3647
        }
3648
        
3649
        private void OnAddMarkupDataGroupCompleted(object state) {
3650
            if ((this.AddMarkupDataGroupCompleted != null)) {
3651
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3652
                this.AddMarkupDataGroupCompleted(this, new AddMarkupDataGroupCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3653
            }
3654
        }
3655
        
3656
        public void AddMarkupDataGroupAsync(KCOMDataModel.DataModel.MARKUP_DATA_GROUP mARKUP_DATA_GROUP, string ProjectNo) {
3657
            this.AddMarkupDataGroupAsync(mARKUP_DATA_GROUP, ProjectNo, null);
3658
        }
3659
        
3660
        public void AddMarkupDataGroupAsync(KCOMDataModel.DataModel.MARKUP_DATA_GROUP mARKUP_DATA_GROUP, string ProjectNo, object userState) {
3661
            if ((this.onBeginAddMarkupDataGroupDelegate == null)) {
3662
                this.onBeginAddMarkupDataGroupDelegate = new BeginOperationDelegate(this.OnBeginAddMarkupDataGroup);
3663
            }
3664
            if ((this.onEndAddMarkupDataGroupDelegate == null)) {
3665
                this.onEndAddMarkupDataGroupDelegate = new EndOperationDelegate(this.OnEndAddMarkupDataGroup);
3666
            }
3667
            if ((this.onAddMarkupDataGroupCompletedDelegate == null)) {
3668
                this.onAddMarkupDataGroupCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMarkupDataGroupCompleted);
3669
            }
3670
            base.InvokeAsync(this.onBeginAddMarkupDataGroupDelegate, new object[] {
3671
                        mARKUP_DATA_GROUP,
3672
                        ProjectNo}, this.onEndAddMarkupDataGroupDelegate, this.onAddMarkupDataGroupCompletedDelegate, userState);
3673
        }
3674
        
3675
        public bool UpdateMarkupDataGroup(long Group_ID, string ProjectNo) {
3676
            return base.Channel.UpdateMarkupDataGroup(Group_ID, ProjectNo);
3677
        }
3678
        
3679
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3680
        public System.IAsyncResult BeginUpdateMarkupDataGroup(long Group_ID, string ProjectNo, System.AsyncCallback callback, object asyncState) {
3681
            return base.Channel.BeginUpdateMarkupDataGroup(Group_ID, ProjectNo, callback, asyncState);
3682
        }
3683
        
3684
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3685
        public bool EndUpdateMarkupDataGroup(System.IAsyncResult result) {
3686
            return base.Channel.EndUpdateMarkupDataGroup(result);
3687
        }
3688
        
3689
        private System.IAsyncResult OnBeginUpdateMarkupDataGroup(object[] inValues, System.AsyncCallback callback, object asyncState) {
3690
            long Group_ID = ((long)(inValues[0]));
3691
            string ProjectNo = ((string)(inValues[1]));
3692
            return this.BeginUpdateMarkupDataGroup(Group_ID, ProjectNo, callback, asyncState);
3693
        }
3694
        
3695
        private object[] OnEndUpdateMarkupDataGroup(System.IAsyncResult result) {
3696
            bool retVal = this.EndUpdateMarkupDataGroup(result);
3697
            return new object[] {
3698
                    retVal};
3699
        }
3700
        
3701
        private void OnUpdateMarkupDataGroupCompleted(object state) {
3702
            if ((this.UpdateMarkupDataGroupCompleted != null)) {
3703
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3704
                this.UpdateMarkupDataGroupCompleted(this, new UpdateMarkupDataGroupCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3705
            }
3706
        }
3707
        
3708
        public void UpdateMarkupDataGroupAsync(long Group_ID, string ProjectNo) {
3709
            this.UpdateMarkupDataGroupAsync(Group_ID, ProjectNo, null);
3710
        }
3711
        
3712
        public void UpdateMarkupDataGroupAsync(long Group_ID, string ProjectNo, object userState) {
3713
            if ((this.onBeginUpdateMarkupDataGroupDelegate == null)) {
3714
                this.onBeginUpdateMarkupDataGroupDelegate = new BeginOperationDelegate(this.OnBeginUpdateMarkupDataGroup);
3715
            }
3716
            if ((this.onEndUpdateMarkupDataGroupDelegate == null)) {
3717
                this.onEndUpdateMarkupDataGroupDelegate = new EndOperationDelegate(this.OnEndUpdateMarkupDataGroup);
3718
            }
3719
            if ((this.onUpdateMarkupDataGroupCompletedDelegate == null)) {
3720
                this.onUpdateMarkupDataGroupCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateMarkupDataGroupCompleted);
3721
            }
3722
            base.InvokeAsync(this.onBeginUpdateMarkupDataGroupDelegate, new object[] {
3723
                        Group_ID,
3724
                        ProjectNo}, this.onEndUpdateMarkupDataGroupDelegate, this.onUpdateMarkupDataGroupCompletedDelegate, userState);
3725
        }
3726
        
3727 4063
        public bool UpdateMarkupData(string CommentID, long Group_ID, string ProjectNo) {
3728 4064
            return base.Channel.UpdateMarkupData(CommentID, Group_ID, ProjectNo);
3729 4065
        }
......
5723 6059
                        project_no,
5724 6060
                        doc_id}, this.onEndGetMessageDelegate, this.onGetMessageCompletedDelegate, userState);
5725 6061
        }
6062
        
6063
        public KCOMDataModel.DataModel.DOCINFO FinalPDF_GetDocinfo(string project_no, string docinfo_id) {
6064
            return base.Channel.FinalPDF_GetDocinfo(project_no, docinfo_id);
6065
        }
6066
        
6067
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6068
        public System.IAsyncResult BeginFinalPDF_GetDocinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState) {
6069
            return base.Channel.BeginFinalPDF_GetDocinfo(project_no, docinfo_id, callback, asyncState);
6070
        }
6071
        
6072
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6073
        public KCOMDataModel.DataModel.DOCINFO EndFinalPDF_GetDocinfo(System.IAsyncResult result) {
6074
            return base.Channel.EndFinalPDF_GetDocinfo(result);
6075
        }
6076
        
6077
        private System.IAsyncResult OnBeginFinalPDF_GetDocinfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
6078
            string project_no = ((string)(inValues[0]));
6079
            string docinfo_id = ((string)(inValues[1]));
6080
            return this.BeginFinalPDF_GetDocinfo(project_no, docinfo_id, callback, asyncState);
6081
        }
6082
        
6083
        private object[] OnEndFinalPDF_GetDocinfo(System.IAsyncResult result) {
6084
            KCOMDataModel.DataModel.DOCINFO retVal = this.EndFinalPDF_GetDocinfo(result);
6085
            return new object[] {
6086
                    retVal};
6087
        }
6088
        
6089
        private void OnFinalPDF_GetDocinfoCompleted(object state) {
6090
            if ((this.FinalPDF_GetDocinfoCompleted != null)) {
6091
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6092
                this.FinalPDF_GetDocinfoCompleted(this, new FinalPDF_GetDocinfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6093
            }
6094
        }
6095
        
6096
        public void FinalPDF_GetDocinfoAsync(string project_no, string docinfo_id) {
6097
            this.FinalPDF_GetDocinfoAsync(project_no, docinfo_id, null);
6098
        }
6099
        
6100
        public void FinalPDF_GetDocinfoAsync(string project_no, string docinfo_id, object userState) {
6101
            if ((this.onBeginFinalPDF_GetDocinfoDelegate == null)) {
6102
                this.onBeginFinalPDF_GetDocinfoDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetDocinfo);
6103
            }
6104
            if ((this.onEndFinalPDF_GetDocinfoDelegate == null)) {
6105
                this.onEndFinalPDF_GetDocinfoDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetDocinfo);
6106
            }
6107
            if ((this.onFinalPDF_GetDocinfoCompletedDelegate == null)) {
6108
                this.onFinalPDF_GetDocinfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetDocinfoCompleted);
6109
            }
6110
            base.InvokeAsync(this.onBeginFinalPDF_GetDocinfoDelegate, new object[] {
6111
                        project_no,
6112
                        docinfo_id}, this.onEndFinalPDF_GetDocinfoDelegate, this.onFinalPDF_GetDocinfoCompletedDelegate, userState);
6113
        }
6114
        
6115
        public KCOMDataModel.DataModel.DOCUMENT_ITEM FinalPDF_GetDocumentItem(string project_no, string document_id) {
6116
            return base.Channel.FinalPDF_GetDocumentItem(project_no, document_id);
6117
        }
6118
        
6119
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6120
        public System.IAsyncResult BeginFinalPDF_GetDocumentItem(string project_no, string document_id, System.AsyncCallback callback, object asyncState) {
6121
            return base.Channel.BeginFinalPDF_GetDocumentItem(project_no, document_id, callback, asyncState);
6122
        }
6123
        
6124
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6125
        public KCOMDataModel.DataModel.DOCUMENT_ITEM EndFinalPDF_GetDocumentItem(System.IAsyncResult result) {
6126
            return base.Channel.EndFinalPDF_GetDocumentItem(result);
6127
        }
6128
        
6129
        private System.IAsyncResult OnBeginFinalPDF_GetDocumentItem(object[] inValues, System.AsyncCallback callback, object asyncState) {
6130
            string project_no = ((string)(inValues[0]));
6131
            string document_id = ((string)(inValues[1]));
6132
            return this.BeginFinalPDF_GetDocumentItem(project_no, document_id, callback, asyncState);
6133
        }
6134
        
6135
        private object[] OnEndFinalPDF_GetDocumentItem(System.IAsyncResult result) {
6136
            KCOMDataModel.DataModel.DOCUMENT_ITEM retVal = this.EndFinalPDF_GetDocumentItem(result);
6137
            return new object[] {
6138
                    retVal};
6139
        }
6140
        
6141
        private void OnFinalPDF_GetDocumentItemCompleted(object state) {
6142
            if ((this.FinalPDF_GetDocumentItemCompleted != null)) {
6143
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6144
                this.FinalPDF_GetDocumentItemCompleted(this, new FinalPDF_GetDocumentItemCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6145
            }
6146
        }
6147
        
6148
        public void FinalPDF_GetDocumentItemAsync(string project_no, string document_id) {
6149
            this.FinalPDF_GetDocumentItemAsync(project_no, document_id, null);
6150
        }
6151
        
6152
        public void FinalPDF_GetDocumentItemAsync(string project_no, string document_id, object userState) {
6153
            if ((this.onBeginFinalPDF_GetDocumentItemDelegate == null)) {
6154
                this.onBeginFinalPDF_GetDocumentItemDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetDocumentItem);
6155
            }
6156
            if ((this.onEndFinalPDF_GetDocumentItemDelegate == null)) {
6157
                this.onEndFinalPDF_GetDocumentItemDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetDocumentItem);
6158
            }
6159
            if ((this.onFinalPDF_GetDocumentItemCompletedDelegate == null)) {
6160
                this.onFinalPDF_GetDocumentItemCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetDocumentItemCompleted);
6161
            }
6162
            base.InvokeAsync(this.onBeginFinalPDF_GetDocumentItemDelegate, new object[] {
6163
                        project_no,
6164
                        document_id}, this.onEndFinalPDF_GetDocumentItemDelegate, this.onFinalPDF_GetDocumentItemCompletedDelegate, userState);
6165
        }
6166
        
6167
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> FinalPDF_GetMarkupdata(string project_no, string docinfo_id) {
6168
            return base.Channel.FinalPDF_GetMarkupdata(project_no, docinfo_id);
6169
        }
6170
        
6171
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6172
        public System.IAsyncResult BeginFinalPDF_GetMarkupdata(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState) {
6173
            return base.Channel.BeginFinalPDF_GetMarkupdata(project_no, docinfo_id, callback, asyncState);
6174
        }
6175
        
6176
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6177
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndFinalPDF_GetMarkupdata(System.IAsyncResult result) {
6178
            return base.Channel.EndFinalPDF_GetMarkupdata(result);
6179
        }
6180
        
6181
        private System.IAsyncResult OnBeginFinalPDF_GetMarkupdata(object[] inValues, System.AsyncCallback callback, object asyncState) {
6182
            string project_no = ((string)(inValues[0]));
6183
            string docinfo_id = ((string)(inValues[1]));
6184
            return this.BeginFinalPDF_GetMarkupdata(project_no, docinfo_id, callback, asyncState);
6185
        }
6186
        
6187
        private object[] OnEndFinalPDF_GetMarkupdata(System.IAsyncResult result) {
6188
            System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> retVal = this.EndFinalPDF_GetMarkupdata(result);
6189
            return new object[] {
6190
                    retVal};
6191
        }
6192
        
6193
        private void OnFinalPDF_GetMarkupdataCompleted(object state) {
6194
            if ((this.FinalPDF_GetMarkupdataCompleted != null)) {
6195
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6196
                this.FinalPDF_GetMarkupdataCompleted(this, new FinalPDF_GetMarkupdataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6197
            }
6198
        }
6199
        
6200
        public void FinalPDF_GetMarkupdataAsync(string project_no, string docinfo_id) {
6201
            this.FinalPDF_GetMarkupdataAsync(project_no, docinfo_id, null);
6202
        }
6203
        
6204
        public void FinalPDF_GetMarkupdataAsync(string project_no, string docinfo_id, object userState) {
6205
            if ((this.onBeginFinalPDF_GetMarkupdataDelegate == null)) {
6206
                this.onBeginFinalPDF_GetMarkupdataDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetMarkupdata);
6207
            }
6208
            if ((this.onEndFinalPDF_GetMarkupdataDelegate == null)) {
6209
                this.onEndFinalPDF_GetMarkupdataDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetMarkupdata);
6210
            }
6211
            if ((this.onFinalPDF_GetMarkupdataCompletedDelegate == null)) {
6212
                this.onFinalPDF_GetMarkupdataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetMarkupdataCompleted);
6213
            }
6214
            base.InvokeAsync(this.onBeginFinalPDF_GetMarkupdataDelegate, new object[] {
6215
                        project_no,
6216
                        docinfo_id}, this.onEndFinalPDF_GetMarkupdataDelegate, this.onFinalPDF_GetMarkupdataCompletedDelegate, userState);
6217
        }
6218
        
6219
        public KCOMDataModel.DataModel.MARKUP_INFO FinalPDF_GetMarkupinfo(string project_no, string docinfo_id) {
6220
            return base.Channel.FinalPDF_GetMarkupinfo(project_no, docinfo_id);
6221
        }
6222
        
6223
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6224
        public System.IAsyncResult BeginFinalPDF_GetMarkupinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState) {
6225
            return base.Channel.BeginFinalPDF_GetMarkupinfo(project_no, docinfo_id, callback, asyncState);
6226
        }
6227
        
6228
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6229
        public KCOMDataModel.DataModel.MARKUP_INFO EndFinalPDF_GetMarkupinfo(System.IAsyncResult result) {
6230
            return base.Channel.EndFinalPDF_GetMarkupinfo(result);
6231
        }
6232
        
6233
        private System.IAsyncResult OnBeginFinalPDF_GetMarkupinfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
6234
            string project_no = ((string)(inValues[0]));
6235
            string docinfo_id = ((string)(inValues[1]));
6236
            return this.BeginFinalPDF_GetMarkupinfo(project_no, docinfo_id, callback, asyncState);
6237
        }
6238
        
6239
        private object[] OnEndFinalPDF_GetMarkupinfo(System.IAsyncResult result) {
6240
            KCOMDataModel.DataModel.MARKUP_INFO retVal = this.EndFinalPDF_GetMarkupinfo(result);
6241
            return new object[] {
6242
                    retVal};
6243
        }
6244
        
6245
        private void OnFinalPDF_GetMarkupinfoCompleted(object state) {
6246
            if ((this.FinalPDF_GetMarkupinfoCompleted != null)) {
6247
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6248
                this.FinalPDF_GetMarkupinfoCompleted(this, new FinalPDF_GetMarkupinfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6249
            }
6250
        }
6251
        
6252
        public void FinalPDF_GetMarkupinfoAsync(string project_no, string docinfo_id) {
6253
            this.FinalPDF_GetMarkupinfoAsync(project_no, docinfo_id, null);
6254
        }
6255
        
6256
        public void FinalPDF_GetMarkupinfoAsync(string project_no, string docinfo_id, object userState) {
6257
            if ((this.onBeginFinalPDF_GetMarkupinfoDelegate == null)) {
6258
                this.onBeginFinalPDF_GetMarkupinfoDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetMarkupinfo);
6259
            }
6260
            if ((this.onEndFinalPDF_GetMarkupinfoDelegate == null)) {
6261
                this.onEndFinalPDF_GetMarkupinfoDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetMarkupinfo);
6262
            }
6263
            if ((this.onFinalPDF_GetMarkupinfoCompletedDelegate == null)) {
6264
                this.onFinalPDF_GetMarkupinfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetMarkupinfoCompleted);
6265
            }
6266
            base.InvokeAsync(this.onBeginFinalPDF_GetMarkupinfoDelegate, new object[] {
6267
                        project_no,
6268
                        docinfo_id}, this.onEndFinalPDF_GetMarkupinfoDelegate, this.onFinalPDF_GetMarkupinfoCompletedDelegate, userState);
6269
        }
6270
        
6271
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> FinalPDF_GetFinalPDFs(string final_id) {
6272
            return base.Channel.FinalPDF_GetFinalPDFs(final_id);
6273
        }
6274
        
6275
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6276
        public System.IAsyncResult BeginFinalPDF_GetFinalPDFs(string final_id, System.AsyncCallback callback, object asyncState) {
6277
            return base.Channel.BeginFinalPDF_GetFinalPDFs(final_id, callback, asyncState);
6278
        }
6279
        
6280
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6281
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> EndFinalPDF_GetFinalPDFs(System.IAsyncResult result) {
6282
            return base.Channel.EndFinalPDF_GetFinalPDFs(result);
6283
        }
6284
        
6285
        private System.IAsyncResult OnBeginFinalPDF_GetFinalPDFs(object[] inValues, System.AsyncCallback callback, object asyncState) {
6286
            string final_id = ((string)(inValues[0]));
6287
            return this.BeginFinalPDF_GetFinalPDFs(final_id, callback, asyncState);
6288
        }
6289
        
6290
        private object[] OnEndFinalPDF_GetFinalPDFs(System.IAsyncResult result) {
6291
            System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> retVal = this.EndFinalPDF_GetFinalPDFs(result);
6292
            return new object[] {
6293
                    retVal};
6294
        }
6295
        
6296
        private void OnFinalPDF_GetFinalPDFsCompleted(object state) {
6297
            if ((this.FinalPDF_GetFinalPDFsCompleted != null)) {
6298
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6299
                this.FinalPDF_GetFinalPDFsCompleted(this, new FinalPDF_GetFinalPDFsCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6300
            }
6301
        }
6302
        
6303
        public void FinalPDF_GetFinalPDFsAsync(string final_id) {
6304
            this.FinalPDF_GetFinalPDFsAsync(final_id, null);
6305
        }
6306
        
6307
        public void FinalPDF_GetFinalPDFsAsync(string final_id, object userState) {
6308
            if ((this.onBeginFinalPDF_GetFinalPDFsDelegate == null)) {
6309
                this.onBeginFinalPDF_GetFinalPDFsDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetFinalPDFs);
6310
            }
6311
            if ((this.onEndFinalPDF_GetFinalPDFsDelegate == null)) {
6312
                this.onEndFinalPDF_GetFinalPDFsDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetFinalPDFs);
6313
            }
6314
            if ((this.onFinalPDF_GetFinalPDFsCompletedDelegate == null)) {
6315
                this.onFinalPDF_GetFinalPDFsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetFinalPDFsCompleted);
6316
            }
6317
            base.InvokeAsync(this.onBeginFinalPDF_GetFinalPDFsDelegate, new object[] {
6318
                        final_id}, this.onEndFinalPDF_GetFinalPDFsDelegate, this.onFinalPDF_GetFinalPDFsCompletedDelegate, userState);
6319
        }
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

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