ISampleService.cs
1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System.Collections;
using System.Collections.Generic;
using System.ServiceModel;
using System.Threading.Tasks;
using System.Xml.Serialization;
using WebMvc.Areas.WebService;
using WebRepository;
namespace WebMvc.Areas.WebService
{
[ServiceContract(Namespace= "http://schemas.datacontract.org/2004/07/WebMvc.Areas.WebService")]
public interface ISampleService
{
//入库
[OperationContract]
string LK_In(string Request);
//出库
[OperationContract]
string LK_Out(string Request);
//RGV移动
[OperationContract]
string LK_RgvMove(string Request);
//库存查询
[OperationContract]
string LK_SelectInventory(string Request);
//查询测试
[OperationContract]
string SelectDemo(string Request);
//入库测试
[OperationContract]
string InDemo(string Request);
//出库测试
[OperationContract]
string OutDemo(string Request);
//更改测试
[OperationContract]
string UpdataDemo(string Request);
[OperationContract]
ReceiptResponse ReceiptService(MaterialsInformation[] materials);
}
}