using System; using System.Collections.Generic; using SiaSun.LMS.Model; using System.Text; using System.ServiceModel; using System.Data; namespace SiaSun.LMS.Interface { [ServiceContract()] public partial interface I_PDAService { #region 操作方法 [OperationContract] DataTable GetList(string strSQL); [OperationContract] object ExecuteScalar(string strSQL); [OperationContract] ObjectT GetModel(string statementName, object parameterObject); [OperationContract] bool USER_LOGIN(string USER_CODE, string USER_PASSWORD, out SiaSun.LMS.Model.SYS_USER USER); [OperationContract] bool ManageCreate(string sClassName, string sMethodName, SiaSun.LMS.Model.MANAGE_MAIN mMANAGE_MAIN, List lsMANAGE_LIST, bool bTrans, bool bComplete, bool bAutoSendControl, out string sResult); #endregion } }