// ---For Gift Items List In Front End---
 public static List <LatestItemsInfo> GetAllGiftCards(AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List <LatestItemsInfo> lstGiftItems = AspxItemMgntProvider.GetAllGiftCards(aspxCommonObj);
         return(lstGiftItems);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 // ---For Gift Items List In Front End---
 public static List <LatestItemsInfo> GetAllGiftCards(int offset, int limit, int rowTotal, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List <LatestItemsInfo> lstGiftItems = AspxItemMgntProvider.GetAllGiftCards(offset, limit, rowTotal, aspxCommonObj);
         return(lstGiftItems);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }