namespace WX.CRM.IBLL.Isvr
{
public interface IISVR_RiaSeviceActiveSoftOrder
{
///
/// 不加密只用Key传值过程处理(通过parameter调用接口返回信息)
///
///
///
///
string ProcessHandling(WX.CRM.Model.Enum.Parameter paraKey, string content);
///
/// 加密传值过程处理(通过parameter调用接口返回信息)
///
///
///
///
string ProcessHandling(WX.CRM.Model.Enum.Parameter paraKey, string content, string cilentId, string sign);
///
/// 资格验证(预留)
///
///
///
string CheckUserNameCompetence(string content);
///
/// 创建订单(单个)(预留)
///
///
///
string upAgentCreateActiveOrder(string content);
///
/// 开通订单(预留)
///
///
///
string upAgentOpenOrder(string content);
///
/// 加密传值过程处理Get方式(通过parameter调用接口返回信息)
///
///
///
///
string ProcessRequsetGet(WX.CRM.Model.Enum.Parameter paraKey, string json);
}
}