28 lines
		
	
	
		
			716 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			716 B
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Runtime.Serialization; | |||
|  | using System.ServiceModel; | |||
|  | using System.Text; | |||
|  | using System.Data; | |||
|  | 
 | |||
|  | namespace DeiNiu.Wcf | |||
|  | { | |||
|  |     // 注意: 使用“重构”菜单上的“重命名”命令,可以同时更改代码和配置文件中的接口名“IGoodsService”。 | |||
|  |     [ServiceContract] | |||
|  |     public interface IGoods | |||
|  |     { | |||
|  |         [OperationContract] | |||
|  |         DataSet Query(string querystr, int rownumStart, int rownumEnd); | |||
|  |         [OperationContract] | |||
|  |         bool update(List<WcfWmsGoods> goods); | |||
|  |         [OperationContract] | |||
|  |         void syncGoods(); | |||
|  | 
 | |||
|  |         [OperationContract] | |||
|  |         DataTable QueryPacking(string goodsId); | |||
|  | 
 | |||
|  |     } | |||
|  |     | |||
|  | } | |||
|  |   |