Esempio n. 1
0
 public static void SetCurrentPaymentPendingCartId(Store currentStore, string value)
 {
     SetCookieString(WebAppSettings.CookieNameCartIdPaymentPending(currentStore.Id), value, currentStore, DateTime.Now.AddDays(14), true);
 }
Esempio n. 2
0
 public static string GetCurrentPaymentPendingCartId(Store currentStore)
 {
     return(GetCookieString(WebAppSettings.CookieNameCartIdPaymentPending(currentStore.Id), currentStore));
 }