33 lines
722 B
C#
33 lines
722 B
C#
/// <summary>
|
|
///WCF service
|
|
///Interface FOR TABLE t_wmsOutBox
|
|
///By wm
|
|
///on 04/06/2020
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using DeiNiu.wms.Logical;
|
|
using System.Data;
|
|
|
|
namespace DeiNiu.Wcf
|
|
{
|
|
[ServiceContract]
|
|
public interface IWmsOutBox
|
|
{
|
|
[OperationContract]
|
|
DataSet query(string querystr, int rownumStart, int rownumEnd);
|
|
[OperationContract]
|
|
int add(WcfWmsOutBox wcfData,int count);
|
|
|
|
[OperationContract]
|
|
int delete(WcfWmsOutBox wcfData);
|
|
[OperationContract]
|
|
bool update(List<WcfWmsOutBox> wcfs);
|
|
}
|
|
}
|