From efaf4863ac7b44e0152a0f5a03df00ba0aa9f03d Mon Sep 17 00:00:00 2001 From: Amit Singh Date: Sun, 16 Jun 2024 13:37:42 +0530 Subject: [PATCH] Added part cart method Added part cart method --- sfdxsrc/unmanaged/main/default/classes/AddToCart.cls | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls b/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls index 7f6e0b7..223e9f8 100644 --- a/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls +++ b/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls @@ -6,9 +6,6 @@ * @last modified by : Amit Singh - PantherSchools **/ public with sharing class AddToCart { - public AddToCart() { - - } public static void addCart(){ @@ -16,4 +13,7 @@ public with sharing class AddToCart { public static void fetchActiveCart(){ } -} \ No newline at end of file + public static void fetchPastCart(){ + + } +}