using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Web; using System.Text; [ServiceContract] public interface Iframework_service { [OperationContract] byte[] ProcessInteraction(byte[] interactionData, string connectionKey, bool isTransactional, string tablePrefix, bool isCollection); [OperationContract] byte[] GetVersion(string customerCode, string licenceKey, string versionNo, string file); [OperationContract] bool SaveVersion(byte[] versionData, string versionNo, string file); }