You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
912 B
33 lines
912 B
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);
|
|
|
|
}
|
|
}
|