//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace framework_business.framework_service { [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="framework_service.Iframework_service")] public interface Iframework_service { [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iframework_service/ProcessInteraction", ReplyAction="http://tempuri.org/Iframework_service/ProcessInteractionResponse")] byte[] ProcessInteraction(byte[] interactionData, string connectionKey, bool isTransactional, string tablePrefix, bool isCollection); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iframework_service/ProcessInteraction", ReplyAction="http://tempuri.org/Iframework_service/ProcessInteractionResponse")] System.Threading.Tasks.Task ProcessInteractionAsync(byte[] interactionData, string connectionKey, bool isTransactional, string tablePrefix, bool isCollection); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iframework_service/GetVersion", ReplyAction="http://tempuri.org/Iframework_service/GetVersionResponse")] byte[] GetVersion(string customerCode, string licenceKey, string versionNo, string file); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iframework_service/GetVersion", ReplyAction="http://tempuri.org/Iframework_service/GetVersionResponse")] System.Threading.Tasks.Task GetVersionAsync(string customerCode, string licenceKey, string versionNo, string file); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iframework_service/SaveVersion", ReplyAction="http://tempuri.org/Iframework_service/SaveVersionResponse")] bool SaveVersion(byte[] versionData, string versionNo, string file); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/Iframework_service/SaveVersion", ReplyAction="http://tempuri.org/Iframework_service/SaveVersionResponse")] System.Threading.Tasks.Task SaveVersionAsync(byte[] versionData, string versionNo, string file); } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public interface Iframework_serviceChannel : framework_business.framework_service.Iframework_service, System.ServiceModel.IClientChannel { } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public partial class Iframework_serviceClient : System.ServiceModel.ClientBase, framework_business.framework_service.Iframework_service { public Iframework_serviceClient() { } public Iframework_serviceClient(string endpointConfigurationName) : base(endpointConfigurationName) { } public Iframework_serviceClient(string endpointConfigurationName, string remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public Iframework_serviceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public Iframework_serviceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } public byte[] ProcessInteraction(byte[] interactionData, string connectionKey, bool isTransactional, string tablePrefix, bool isCollection) { return base.Channel.ProcessInteraction(interactionData, connectionKey, isTransactional, tablePrefix, isCollection); } public System.Threading.Tasks.Task ProcessInteractionAsync(byte[] interactionData, string connectionKey, bool isTransactional, string tablePrefix, bool isCollection) { return base.Channel.ProcessInteractionAsync(interactionData, connectionKey, isTransactional, tablePrefix, isCollection); } public byte[] GetVersion(string customerCode, string licenceKey, string versionNo, string file) { return base.Channel.GetVersion(customerCode, licenceKey, versionNo, file); } public System.Threading.Tasks.Task GetVersionAsync(string customerCode, string licenceKey, string versionNo, string file) { return base.Channel.GetVersionAsync(customerCode, licenceKey, versionNo, file); } public bool SaveVersion(byte[] versionData, string versionNo, string file) { return base.Channel.SaveVersion(versionData, versionNo, file); } public System.Threading.Tasks.Task SaveVersionAsync(byte[] versionData, string versionNo, string file) { return base.Channel.SaveVersionAsync(versionData, versionNo, file); } } }