ldj/WcfService1/IWaveRule.cs

39 lines
986 B
C#
Raw Permalink Normal View History

2023-05-23 16:13:17 +08:00
/// <summary>
///WCF service
///Interface FOR TABLE t_WaveRule
///By wm
///on 07/03/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;
using DeiNiu.Utils;
namespace DeiNiu.Wcf
{
[ServiceContract]
public interface IWaveRule
{
[OperationContract]
DataSet query(string querystr, int rownumStart, int rownumEnd);
[OperationContract]
int add(WcfWaveRule wcfData);
[OperationContract]
int update(WcfWaveRule wcfData);
[OperationContract]
int delete(WcfWaveRule wcfData);
[OperationContract]
bool setRule(WcfWaveRule wcfData);
[OperationContract]
WcfWaveRule getCurrentActiveRule( enumWaveRuleType enumWaveRuleType);
[OperationContract]
WcfWaveRule[] getWaveRules(enumWaveRuleType type);
}
}