Ejemplo n.º 1
0
    public string GetCollectList(string JSon)
    {
        BD_GoodsCategory bll = new BD_GoodsCategory();

        BD_GoodsCategory.ResultProductList result = bll.GetCollectList(AESHelper.Decrypt_android(JSon));
        JavaScriptSerializer js = new JavaScriptSerializer();

        return(AESHelper.Encrypt_android(js.Serialize(result)));
    }
Ejemplo n.º 2
0
    public string ResellerSearchGoodsList(string JSon, string from)
    {
        BD_GoodsCategory bll = new BD_GoodsCategory();

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

        return(AESHelper.Encrypt_android(js.Serialize(result)));
    }
Ejemplo n.º 3
0
    public string GetProductList(string JSon, string from)
    {
        //Common.WriteLog(@"D:\u8\json_start.txt", JSon);
        BD_Goods bll = new BD_Goods();

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

        return(AESHelper.Encrypt_android(js.Serialize(result)));
    }
Ejemplo n.º 4
0
    public string GetProductList(string JSon, string from)
    {
        BD_Goods bll = new BD_Goods();

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

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