Beispiel #1
0
 public static CartExistInfo CheckCustomerCartExist(AspxCommonInfo aspxCommonObj)
 {
     List<KeyValuePair<string, object>> parameter = CommonParmBuilder.GetParamSPSCt(aspxCommonObj);
     SQLHandler sqlH = new SQLHandler();
     CartExistInfo objCartExist= sqlH.ExecuteAsObject<CartExistInfo>("usp_Aspx_CheckCartExists", parameter);
     return objCartExist;
 }
        public static CartExistInfo CheckCustomerCartExist(AspxCommonInfo aspxCommonObj)
        {
            CartExistInfo objCartExist = AspxCartProvider.CheckCustomerCartExist(aspxCommonObj);

            return(objCartExist);
        }