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