Ejemplo n.º 1
0
 public WishItemsSettingInfo GetWishItemsSetting(AspxCommonInfo aspxCommonObj)
 {
     try
     {
         WishItemProvider     wip         = new WishItemProvider();
         WishItemsSettingInfo wishSetting = wip.GetWishItemsSetting(aspxCommonObj);
         return(wishSetting);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 2
0
 public WishItemsSettingInfo GetWishItemsSetting(AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List <KeyValuePair <string, object> > parameterCollection = CommonParmBuilder.GetParamSPC(aspxCommonObj);
         SQLHandler           sqlH           = new SQLHandler();
         WishItemsSettingInfo objWishSetting = new WishItemsSettingInfo();
         objWishSetting = sqlH.ExecuteAsObject <WishItemsSettingInfo>("[dbo].[usp_Aspx_WishItemsSettingsGet]", parameterCollection);
         return(objWishSetting);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
 public WishItemsSettingInfo GetWishItemsSetting(AspxCommonInfo aspxCommonObj)
 {
     try
     {
         List<KeyValuePair<string, object>> parameterCollection = CommonParmBuilder.GetParamSPC(aspxCommonObj);
         SQLHandler sqlH = new SQLHandler();
         WishItemsSettingInfo objWishSetting = new WishItemsSettingInfo();
         objWishSetting = sqlH.ExecuteAsObject<WishItemsSettingInfo>("[dbo].[usp_Aspx_WishItemsSettingsGet]", parameterCollection);
         return objWishSetting;
     }
     catch (Exception e)
     {
         throw e;
     }
 }