public void ActualizarNotificacionVisto(NotificacionesSistemas NS) { try { NotificacionSistemas_Datos NSD = new NotificacionSistemas_Datos(); NSD.ActualizarNotificacionVisto(NS); } catch (Exception ex) { throw ex; } }
public void ObtenerNotificaciones(NotificacionesSistemas Datos) { try { NotificacionSistemas_Datos NSD = new NotificacionSistemas_Datos(); NSD.ObtenerNotificaciones(Datos); } catch (Exception ex) { throw ex; } }
public void ActualizarNotificacionVisto(NotificacionesSistemas Datos) { try { object[] Parametro = { Datos.IDSucursal, Datos.Visto, Datos.IDTipoNotificacion, Datos.IDUsuario }; SqlHelper.ExecuteDataset(Datos.Conexion, "spCSLDB_set_NotificacionesSistemaVisto", Parametro); } catch (Exception ex) { throw ex; } }
private void bgwNotificaciones_DoWork(object sender, DoWorkEventArgs e) { try { NotificacionesSistemas NS = new NotificacionesSistemas(); NS.Conexion = Comun.Conexion; NS.IDSucursal = Comun.IDSucursalCaja; NotificacionesSistemas_Negocio NSN = new NotificacionesSistemas_Negocio(); NSN.ObtenerNotificaciones(NS); Comun.TablaNotificaciones = NS.TablaNotificaciones; } catch (Exception ex) { LogError.AddExcFileTxt(ex, "frmMenuInicio ~ bgwNotificaciones_DoWork"); } }
private void ActualizarVisto() { try { NotificacionesSistemas NS = new NotificacionesSistemas(); NotificacionesSistemas_Negocio NSN = new NotificacionesSistemas_Negocio(); NS.Conexion = Comun.Conexion; NS.IDSucursal = Comun.IDSucursalCaja; NS.Visto = true; NS.IDTipoNotificacion = 2; NS.IDUsuario = Comun.IDUsuario; NSN.ActualizarNotificacionVisto(NS); } catch (Exception ex) { throw ex; } }
public void ObtenerNotificaciones(NotificacionesSistemas Datos) { try { DataSet Ds = SqlHelper.ExecuteDataset(Datos.Conexion, "spCSLDB_get_NotificacionesSistemas", Datos.IDSucursal); Datos.TablaNotificaciones = new DataTable(); if (Ds != null) { if (Ds.Tables.Count == 1) { Datos.TablaNotificaciones = Ds.Tables[0]; } } } catch (Exception ex) { throw ex; } }