public NewsInfo ArticlesGetById(decimal pID, string pLanguage) { try { NewsDA objDA = new NewsDA(); DataSet ResultData = objDA.ArticlesGetById(pID, pLanguage); return(CBO <NewsInfo> .FillObjectFromDataSet(ResultData)); } catch (Exception ex) { Logger.LogException(ex); return(new NewsInfo()); } }