Ejemplo n.º 1
0
        public static bool WriteSystemLog(string _operator, string _description, DateTime _testTime)
        {
            try
            {
                SystemLogBLL.InsertSystemLog(_operator, _description, _testTime);
            }
            catch (Exception ex)
            {
                //LogHelper.ToLog("DBErr.txt", ex);

                return(false);
            }

            return(true);
        }