public BrandSettingInfo GetBrandSetting(AspxCommonInfo aspxCommonObj) { try { AspxBrandViewProvider objBrand = new AspxBrandViewProvider(); BrandSettingInfo lstBrand = objBrand.GetBrandSetting(aspxCommonObj); return(lstBrand); } catch (Exception ex) { throw ex; } }
public BrandSettingInfo GetBrandSetting(AspxCommonInfo aspxCommonObj) { try { List <KeyValuePair <string, object> > paramCol = CommonParmBuilder.GetParamSPC(aspxCommonObj); SQLHandler sqlH = new SQLHandler(); BrandSettingInfo view = sqlH.ExecuteAsObject <BrandSettingInfo>("[dbo].[usp_Aspx_BrandSettingGet]", paramCol); return(view); } catch (Exception ex) { throw ex; } }