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<MANAGE_LIST>))] [ServiceKnownType(typeof(List<PLAN_LIST>))] public partial interface I_ManageService { [OperationContract] DataTable ManageTypeGetData(); [OperationContract] void ControlTranslate(string WAREHOUSE); [OperationContract] bool RecordCreate(int MANAGE_ID, out string sResult); [OperationContract] IList<SiaSun.LMS.Model.MANAGE_TYPE_PARAM> ManageTypeParamGetList(int MANAGE_TYPE_ID); } }