25 lines
708 B
C#
25 lines
708 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.ServiceModel;
|
|||
|
using System.ServiceModel.Web;
|
|||
|
using DeiNiu.wms.Data.Model.Wcf;
|
|||
|
using DeiNiu.Wcf.erp.wcfData;
|
|||
|
using DeiNiu.Utils;
|
|||
|
|
|||
|
namespace DeiNiu.Wcf
|
|||
|
{
|
|||
|
[ServiceContract]
|
|||
|
internal interface IOrder
|
|||
|
{
|
|||
|
[OperationContract]
|
|||
|
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json,
|
|||
|
UriTemplate = "delete")]
|
|||
|
enumDbResult delete(string orderNo);
|
|||
|
|
|||
|
[OperationContract]
|
|||
|
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json,
|
|||
|
UriTemplate = "close")]
|
|||
|
enumDbResult close(string orderNo);
|
|||
|
|
|||
|
}
|
|||
|
}
|