using System.Web.Services;
|
|
|
|
[WebService(Namespace = "http://tempuri.org/")]
|
|
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
|
|
public class Service : WebService {
|
|
|
|
[WebMethod]
|
|
public string InsertFeedPlan(string data) {
|
|
var result = RpcHelper.RpcHelperUtil.InsertFeedPlan(data);
|
|
return result;
|
|
}
|
|
|
|
[WebMethod]
|
|
public string InsertGCB(string data) {
|
|
var result = RpcHelper.RpcHelperUtil.InsertGCB(data);
|
|
return result;
|
|
}
|
|
|
|
[WebMethod]
|
|
public string InsertBCB(string data) {
|
|
var result = RpcHelper.RpcHelperUtil.InsertBCB(data);
|
|
return result;
|
|
}
|
|
|
|
|
|
[WebMethod]
|
|
public string InsertGoodsSale(string data) {
|
|
var result = RpcHelper.RpcHelperUtil.InsertGoodsSale(data);
|
|
return result;
|
|
}
|
|
|
|
[WebMethod]
|
|
public string UpdateGoodsSale(string data) {
|
|
var result = RpcHelper.RpcHelperUtil.UpdateGoodsSale(data);
|
|
return result;
|
|
}
|
|
|
|
}
|