35 lines
748 B
C#
35 lines
748 B
C#
|
/// <summary>
|
|||
|
///WCF service
|
|||
|
///Interface FOR TABLE t_Owner
|
|||
|
///By wm
|
|||
|
///on 08/16/2018
|
|||
|
/// </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 IOwner
|
|||
|
{
|
|||
|
[OperationContract]
|
|||
|
DataSet query(string querystr, int rownumStart, int rownumEnd);
|
|||
|
[OperationContract]
|
|||
|
int addNew(WcfOwner wcfDate);
|
|||
|
[OperationContract]
|
|||
|
int update(WcfOwner wcfDate);
|
|||
|
[OperationContract]
|
|||
|
int delete(WcfOwner wcfDate);
|
|||
|
[OperationContract]
|
|||
|
int syncNewOwners();
|
|||
|
|
|||
|
}
|
|||
|
}
|