public static List <Models.PRIOALERTAS> getCatalogo() { BLL.PRIOALERTAS bPrioridad = new BLL.PRIOALERTAS(); try { List <Models.PRIOALERTAS> lMotivos = null; lMotivos = bPrioridad.Catalogo(); bPrioridad.Dispose(); return(lMotivos); } catch (Exception ex) { if (bPrioridad != null) { bPrioridad.Dispose(); } throw ex; } finally { bPrioridad.Dispose(); } }
public static void Edicion(Models.PRIOALERTAS mPrioridad) { BLL.PRIOALERTAS cSP = new BLL.PRIOALERTAS(); Models.PRIOALERTAS o = new Models.PRIOALERTAS(); try { o.t820_idalerta_1 = mPrioridad.t820_idalerta_1; o.t820_idalerta_2 = mPrioridad.t820_idalerta_2; o.t820_idalerta_g = mPrioridad.t820_idalerta_g; cSP.Update(o); } catch (Exception ex) { Shared.LogError.LogearError("Error al actualizar la prioridad de alerta", ex); throw new Exception(System.Uri.EscapeDataString("Ocurrió un error al actualizar la prioridad de alerta.")); } finally { cSP.Dispose(); } }
public static int Alta(Models.PRIOALERTAS mPrioridad) { BLL.PRIOALERTAS cSP = new BLL.PRIOALERTAS(); Models.PRIOALERTAS o = new Models.PRIOALERTAS(); try { o.t820_idalerta_1 = mPrioridad.t820_idalerta_1; o.t820_idalerta_2 = mPrioridad.t820_idalerta_2; o.t820_idalerta_g = mPrioridad.t820_idalerta_g; return(cSP.Insert(o)); } catch (Exception ex) { Shared.LogError.LogearError("Error al grabar la prioridad de alerta", ex); throw new Exception(System.Uri.EscapeDataString("Ocurrió un error al grabar.")); } finally { cSP.Dispose(); } }