Example #1
0
    public string GetOrderProList(string JSon)
    {
        BD_GoodsCategory bll = new BD_GoodsCategory();

        BD_GoodsCategory.ResultOrderProList result = bll.GetOrderPro(AESHelper.Decrypt_android(JSon));
        JavaScriptSerializer js = new JavaScriptSerializer();

        return(AESHelper.Encrypt_android(js.Serialize(result)));
    }
Example #2
0
    public string SearchGoodsList(string JSon, string from)
    {
        BD_GoodsCategory bll = new BD_GoodsCategory();

        BD_GoodsCategory.ResultProductList result = bll.SearchGoodsList(AESHelper.Decrypt_android(JSon), from);
        JavaScriptSerializer js = new JavaScriptSerializer();

        return(AESHelper.Encrypt_android(js.Serialize(result)));
    }
Example #3
0
    public string SetCollect(string JSon)
    {
        BD_GoodsCategory bll = new BD_GoodsCategory();

        BD_GoodsCategory.ResultCollect result = bll.SetCollect(AESHelper.Decrypt_android(JSon));
        JavaScriptSerializer           js     = new JavaScriptSerializer();

        return(AESHelper.Encrypt_android(js.Serialize(result)));
    }
Example #4
0
    public string GetResellerProductClassifyList(string JSon, string from)
    {
        BD_GoodsCategory bll = new  BD_GoodsCategory();

        BD_GoodsCategory.ResultGoodsCategory result = bll.GetResellerProductClassifyList(AESHelper.Decrypt_android(JSon));
        JavaScriptSerializer js = new JavaScriptSerializer();

        return(AESHelper.Encrypt_android(js.Serialize(result)));
    }