コード例 #1
0
        public List <beAlarmasResolution> ListarCondicionAlarmas()
        {
            List <beAlarmasResolution> lbeAlarmas = null;

            using (SqlConnection con = new SqlConnection(Conexion))
            {
                try
                {
                    con.Open();
                    daControlArea odaControlArea = new daControlArea();
                    lbeAlarmas = odaControlArea.ListarCondicionAlarmas(con);
                }
                catch (SqlException ex)
                {
                    beLog obeLog;
                    foreach (SqlError err in ex.Errors)
                    {
                        obeLog = new beLog();
                        obeLog.MensajeError = err.Message;
                        obeLog.DetalleError = ex.StackTrace;
                        ucObjeto.Grabar(obeLog, ArchivoLog);
                    }
                }
                catch (Exception ex)
                {
                    beLog obeLog = new beLog();
                    obeLog.MensajeError = ex.Message;
                    obeLog.DetalleError = ex.StackTrace;
                    ucObjeto.Grabar(obeLog, ArchivoLog);
                }
            }
            return(lbeAlarmas);
        }
コード例 #2
0
        public List <beControlArea> ListarControlArea1864(string Dstb, string Abnd, string Alarm1, string Alrm2, string Zona, int Time, int BDays, string Dpto, int TipoAbnd)
        {
            List <beControlArea> lbeControlArea = null;

            using (SqlConnection con = new SqlConnection(Conexion))
            {
                try
                {
                    con.Open();
                    daControlArea odaControlArea = new daControlArea();
                    lbeControlArea = odaControlArea.ListarControlArea1864(con, Dstb, Abnd, Alarm1, Alrm2, Zona, Time, BDays, Dpto, TipoAbnd);
                }
                catch (SqlException ex)
                {
                    beLog obeLog;
                    foreach (SqlError err in ex.Errors)
                    {
                        obeLog = new beLog();
                        obeLog.MensajeError = err.Message;
                        obeLog.DetalleError = ex.StackTrace;
                        ucObjeto.Grabar(obeLog, ArchivoLog);
                    }
                }
                catch (Exception ex)
                {
                    beLog obeLog = new beLog();
                    obeLog.MensajeError = ex.Message;
                    obeLog.DetalleError = ex.StackTrace;
                    ucObjeto.Grabar(obeLog, ArchivoLog);
                }
            }
            return(lbeControlArea);
        }