Exemplo n.º 1
0
 public static void SaveGallerySettings(string settingKeys, string settingsValues, string userModuleID, string portalID, string culture)
 {
     try
     {
         AspxImageGalleryProvider.SaveGallerySettings(settingKeys, settingsValues, userModuleID, portalID, culture);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemplo n.º 2
0
 public static ImageGalleryInfo GetGallerySettingValues(int userModuleID, AspxCommonInfo aspxCommonObj)
 {
     try
     {
         ImageGalleryInfo infoObject = AspxImageGalleryProvider.GetGallerySettingValues(userModuleID, aspxCommonObj);
         return(infoObject);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemplo n.º 3
0
        public static List <ItemsInfoSettings> GetItemsImageGalleryInfoByItemID(int itemID, AspxCommonInfo aspxCommonObj)
        {
            List <ItemsInfoSettings> itemsInfoContainer = AspxImageGalleryProvider.GetItemsImageGalleryInfoByItemID(itemID, aspxCommonObj);

            return(itemsInfoContainer);
        }
Exemplo n.º 4
0
        public static List <ItemsInfoSettings> GetItemsImageGalleryInfoByItemSKU(string itemSKU, AspxCommonInfo aspxCommonObj, string combinationId)
        {
            List <ItemsInfoSettings> itemsInfoContainer = AspxImageGalleryProvider.GetItemsImageGalleryInfoByItemSKU(itemSKU, aspxCommonObj, combinationId);

            return(itemsInfoContainer);
        }
Exemplo n.º 5
0
        public static List <ImageGalleryItemsInfo> GetItemsImageGalleryList(int storeID, int portalID, string userName, string culture)
        {
            List <ImageGalleryItemsInfo> itemsInfoList = AspxImageGalleryProvider.GetItemsImageGalleryList(storeID, portalID, userName, culture);

            return(itemsInfoList);
        }