ISampleService.cs 1.18 KB
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);
    }
}