Пример #1
0
        public Information GetInformation(string dataCode)
        {
            if (dataCode == string.Empty)
            {
                return(null);
            }

            try
            {
                return(_informationDAL.SelectByDataCode(dataCode));
            }
            catch (Exception ex)
            {
                LogHelper.writeLog_error(ex.Message);
                LogHelper.writeLog_error(ex.StackTrace);
                throw;
            }
        }