using System.Collections.Generic; using System.ServiceModel; namespace SSWMS.Common { [ServiceContract] public partial interface I_PlanService { [OperationContract] PLAN_MAIN GetPlanMain(int iPlanID); [OperationContract] IList GetPlanList(int iPlanID); [OperationContract] bool PlanAddOrUpdate(PLAN_MAIN pm, List lPlanListView, out int iPlanID, out string sResult); [OperationContract] bool PlanUpdateStatus(int iPlanID, string sPlanStatus, string sOperator, out string sResult); [OperationContract] bool PlanAutoOut(int iPlanID, string sPlanStation, string sPlanLevel, out string sResult); } }