From 4a10fdad24b913bb2c84c21648b740d0487efbe4 Mon Sep 17 00:00:00 2001 From: Amit Singh Date: Sun, 16 Jun 2024 13:22:03 +0530 Subject: [PATCH] Added addCart & fetchActiveCart method. --- .../unmanaged/main/default/classes/AddToCart.cls | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls b/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls index dc1fa75..7f6e0b7 100644 --- a/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls +++ b/sfdxsrc/unmanaged/main/default/classes/AddToCart.cls @@ -1,5 +1,19 @@ +/** + * @description : + * @author : Amit Singh - PantherSchools + * @group : + * @last modified on : 06-16-2024 + * @last modified by : Amit Singh - PantherSchools +**/ public with sharing class AddToCart { public AddToCart() { } + + public static void addCart(){ + + } + public static void fetchActiveCart(){ + + } } \ No newline at end of file