ISampleService.cs
734 Bytes
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]
ReceiptResponse ReceiptService(MaterialsInformation[] materials);
}
}