using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; using System.Data; using SiaSun.LMS.Model; namespace SiaSun.LMS.Interface { [ServiceContract()] [ServiceKnownType(typeof(SiaSun.LMS.Model.SYS_USER))] [ServiceKnownType(typeof(SiaSun.LMS.Model.MANAGE_LIST))] [ServiceKnownType(typeof(SiaSun.LMS.Model.MANAGE_MAIN))] [ServiceKnownType(typeof(List))] [ServiceKnownType(typeof(List))] public partial interface I_ManageService { [OperationContract] IList ManageTypeParamGetList(int MANAGE_TYPE_ID); [OperationContract] bool ManageInAndroid(MANAGE_MAIN mm, List lManageList, out string sResult); [OperationContract] bool ManageOutAndroid(MANAGE_MAIN mm, List lManageList, out string sResult); } }