예제 #1
0
 public void ObtenerReenvioNotificacion(Notificaciones Datos)
 {
     try
     {
         Notificaciones_Datos ND = new Notificaciones_Datos();
         ND.ObtenerReenvioNotificaciones(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #2
0
 public void ObtenerNotificacionesBusqueda(Notificaciones Datos)
 {
     try
     {
         Notificaciones_Datos ND = new Notificaciones_Datos();
         ND.ObtenerNotificacionesBusqueda(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #3
0
 public void EliminarNotificaciones(Notificaciones Datos)
 {
     try
     {
         Notificaciones_Datos ND = new Notificaciones_Datos();
         ND.EliminarNotificaciones(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #4
0
 public int Notificaciones(Notificaciones Datos)
 {
     try
     {
         Notificaciones_Datos ND = new Notificaciones_Datos();
         return(ND.EnviarNotificacionIndividuales(Datos));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }