1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码由工具生成。
//     运行时版本:4.0.30319.42000
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
 
namespace CSFrameworkV5.WCFTester.MyDataDictService {
    
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    [System.ServiceModel.ServiceContractAttribute(Namespace="http://www.csframework.com", ConfigurationName="MyDataDictService.IDataDictService")]
    public interface IDataDictService {
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/CheckNoExists", ReplyAction="http://www.csframework.com/IDataDictService/CheckNoExistsResponse")]
        bool CheckNoExists(byte[] loginTicket, string keyValue, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/CheckNoExists", ReplyAction="http://www.csframework.com/IDataDictService/CheckNoExistsResponse")]
        System.Threading.Tasks.Task<bool> CheckNoExistsAsync(byte[] loginTicket, string keyValue, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/Delete", ReplyAction="http://www.csframework.com/IDataDictService/DeleteResponse")]
        bool Delete(byte[] loginTicket, string keyValue, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/Delete", ReplyAction="http://www.csframework.com/IDataDictService/DeleteResponse")]
        System.Threading.Tasks.Task<bool> DeleteAsync(byte[] loginTicket, string keyValue, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetDataByKey", ReplyAction="http://www.csframework.com/IDataDictService/GetDataByKeyResponse")]
        byte[] GetDataByKey(byte[] loginTicket, string ORM_TypeName, string key);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetDataByKey", ReplyAction="http://www.csframework.com/IDataDictService/GetDataByKeyResponse")]
        System.Threading.Tasks.Task<byte[]> GetDataByKeyAsync(byte[] loginTicket, string ORM_TypeName, string key);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetDataDictByTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetDataDictByTableNameResponse")]
        byte[] GetDataDictByTableName(byte[] loginTicket, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetDataDictByTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetDataDictByTableNameResponse")]
        System.Threading.Tasks.Task<byte[]> GetDataDictByTableNameAsync(byte[] loginTicket, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetDataDictByDBTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetDataDictByDBTableNameResponse")]
        byte[] GetDataDictByDBTableName(byte[] loginTicket, string tableName, string DBID);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetDataDictByDBTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetDataDictByDBTableNameResponse")]
        System.Threading.Tasks.Task<byte[]> GetDataDictByDBTableNameAsync(byte[] loginTicket, string tableName, string DBID);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetSummaryData", ReplyAction="http://www.csframework.com/IDataDictService/GetSummaryDataResponse")]
        byte[] GetSummaryData(byte[] loginTicket, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetSummaryData", ReplyAction="http://www.csframework.com/IDataDictService/GetSummaryDataResponse")]
        System.Threading.Tasks.Task<byte[]> GetSummaryDataAsync(byte[] loginTicket, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/Update", ReplyAction="http://www.csframework.com/IDataDictService/UpdateResponse")]
        bool Update(byte[] loginTicket, byte[] bs, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/Update", ReplyAction="http://www.csframework.com/IDataDictService/UpdateResponse")]
        System.Threading.Tasks.Task<bool> UpdateAsync(byte[] loginTicket, byte[] bs, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/UpdateEx", ReplyAction="http://www.csframework.com/IDataDictService/UpdateExResponse")]
        byte[] UpdateEx(byte[] loginTicket, byte[] bs, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/UpdateEx", ReplyAction="http://www.csframework.com/IDataDictService/UpdateExResponse")]
        System.Threading.Tasks.Task<byte[]> UpdateExAsync(byte[] loginTicket, byte[] bs, string ORM_TypeName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetLookupData", ReplyAction="http://www.csframework.com/IDataDictService/GetLookupDataResponse")]
        byte[] GetLookupData(byte[] loginTicket, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetLookupData", ReplyAction="http://www.csframework.com/IDataDictService/GetLookupDataResponse")]
        System.Threading.Tasks.Task<byte[]> GetLookupDataAsync(byte[] loginTicket, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetEmptyTable", ReplyAction="http://www.csframework.com/IDataDictService/GetEmptyTableResponse")]
        byte[] GetEmptyTable(byte[] loginTicket, string databaseName, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetEmptyTable", ReplyAction="http://www.csframework.com/IDataDictService/GetEmptyTableResponse")]
        System.Threading.Tasks.Task<byte[]> GetEmptyTableAsync(byte[] loginTicket, string databaseName, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetLookupDataByTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetLookupDataByTableNameResponse")]
        byte[] GetLookupDataByTableName(byte[] loginTicket, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetLookupDataByTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetLookupDataByTableNameResponse")]
        System.Threading.Tasks.Task<byte[]> GetLookupDataByTableNameAsync(byte[] loginTicket, string tableName);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetLookupDataByDBTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetLookupDataByDBTableNameResponse")]
        byte[] GetLookupDataByDBTableName(byte[] loginTicket, string tableName, string DBID);
        
        [System.ServiceModel.OperationContractAttribute(Action="http://www.csframework.com/IDataDictService/GetLookupDataByDBTableName", ReplyAction="http://www.csframework.com/IDataDictService/GetLookupDataByDBTableNameResponse")]
        System.Threading.Tasks.Task<byte[]> GetLookupDataByDBTableNameAsync(byte[] loginTicket, string tableName, string DBID);
    }
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public interface IDataDictServiceChannel : CSFrameworkV5.WCFTester.MyDataDictService.IDataDictService, System.ServiceModel.IClientChannel {
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    public partial class DataDictServiceClient : System.ServiceModel.ClientBase<CSFrameworkV5.WCFTester.MyDataDictService.IDataDictService>, CSFrameworkV5.WCFTester.MyDataDictService.IDataDictService {
        
        public DataDictServiceClient() {
        }
        
        public DataDictServiceClient(string endpointConfigurationName) : 
                base(endpointConfigurationName) {
        }
        
        public DataDictServiceClient(string endpointConfigurationName, string remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public DataDictServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(endpointConfigurationName, remoteAddress) {
        }
        
        public DataDictServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
                base(binding, remoteAddress) {
        }
        
        public bool CheckNoExists(byte[] loginTicket, string keyValue, string ORM_TypeName) {
            return base.Channel.CheckNoExists(loginTicket, keyValue, ORM_TypeName);
        }
        
        public System.Threading.Tasks.Task<bool> CheckNoExistsAsync(byte[] loginTicket, string keyValue, string ORM_TypeName) {
            return base.Channel.CheckNoExistsAsync(loginTicket, keyValue, ORM_TypeName);
        }
        
        public bool Delete(byte[] loginTicket, string keyValue, string ORM_TypeName) {
            return base.Channel.Delete(loginTicket, keyValue, ORM_TypeName);
        }
        
        public System.Threading.Tasks.Task<bool> DeleteAsync(byte[] loginTicket, string keyValue, string ORM_TypeName) {
            return base.Channel.DeleteAsync(loginTicket, keyValue, ORM_TypeName);
        }
        
        public byte[] GetDataByKey(byte[] loginTicket, string ORM_TypeName, string key) {
            return base.Channel.GetDataByKey(loginTicket, ORM_TypeName, key);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetDataByKeyAsync(byte[] loginTicket, string ORM_TypeName, string key) {
            return base.Channel.GetDataByKeyAsync(loginTicket, ORM_TypeName, key);
        }
        
        public byte[] GetDataDictByTableName(byte[] loginTicket, string tableName) {
            return base.Channel.GetDataDictByTableName(loginTicket, tableName);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetDataDictByTableNameAsync(byte[] loginTicket, string tableName) {
            return base.Channel.GetDataDictByTableNameAsync(loginTicket, tableName);
        }
        
        public byte[] GetDataDictByDBTableName(byte[] loginTicket, string tableName, string DBID) {
            return base.Channel.GetDataDictByDBTableName(loginTicket, tableName, DBID);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetDataDictByDBTableNameAsync(byte[] loginTicket, string tableName, string DBID) {
            return base.Channel.GetDataDictByDBTableNameAsync(loginTicket, tableName, DBID);
        }
        
        public byte[] GetSummaryData(byte[] loginTicket, string ORM_TypeName) {
            return base.Channel.GetSummaryData(loginTicket, ORM_TypeName);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetSummaryDataAsync(byte[] loginTicket, string ORM_TypeName) {
            return base.Channel.GetSummaryDataAsync(loginTicket, ORM_TypeName);
        }
        
        public bool Update(byte[] loginTicket, byte[] bs, string ORM_TypeName) {
            return base.Channel.Update(loginTicket, bs, ORM_TypeName);
        }
        
        public System.Threading.Tasks.Task<bool> UpdateAsync(byte[] loginTicket, byte[] bs, string ORM_TypeName) {
            return base.Channel.UpdateAsync(loginTicket, bs, ORM_TypeName);
        }
        
        public byte[] UpdateEx(byte[] loginTicket, byte[] bs, string ORM_TypeName) {
            return base.Channel.UpdateEx(loginTicket, bs, ORM_TypeName);
        }
        
        public System.Threading.Tasks.Task<byte[]> UpdateExAsync(byte[] loginTicket, byte[] bs, string ORM_TypeName) {
            return base.Channel.UpdateExAsync(loginTicket, bs, ORM_TypeName);
        }
        
        public byte[] GetLookupData(byte[] loginTicket, string tableName) {
            return base.Channel.GetLookupData(loginTicket, tableName);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetLookupDataAsync(byte[] loginTicket, string tableName) {
            return base.Channel.GetLookupDataAsync(loginTicket, tableName);
        }
        
        public byte[] GetEmptyTable(byte[] loginTicket, string databaseName, string tableName) {
            return base.Channel.GetEmptyTable(loginTicket, databaseName, tableName);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetEmptyTableAsync(byte[] loginTicket, string databaseName, string tableName) {
            return base.Channel.GetEmptyTableAsync(loginTicket, databaseName, tableName);
        }
        
        public byte[] GetLookupDataByTableName(byte[] loginTicket, string tableName) {
            return base.Channel.GetLookupDataByTableName(loginTicket, tableName);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetLookupDataByTableNameAsync(byte[] loginTicket, string tableName) {
            return base.Channel.GetLookupDataByTableNameAsync(loginTicket, tableName);
        }
        
        public byte[] GetLookupDataByDBTableName(byte[] loginTicket, string tableName, string DBID) {
            return base.Channel.GetLookupDataByDBTableName(loginTicket, tableName, DBID);
        }
        
        public System.Threading.Tasks.Task<byte[]> GetLookupDataByDBTableNameAsync(byte[] loginTicket, string tableName, string DBID) {
            return base.Channel.GetLookupDataByDBTableNameAsync(loginTicket, tableName, DBID);
        }
    }
}