You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

38 lines
939 B

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;
}
}