public void RegisterNotification(DateTime currentTime, Usuario usuario)
        {
            USER = usuario == null ? USER : usuario;

            if (USER != null)
            {
                var ConnString = ConfigurationManager.ConnectionStrings["NotificationsConnectionString"].ConnectionString;
                var query      = @"SELECT [NotificacionId] FROM [dbo].[Notificaciones]" +
                                 " WHERE [UsuarioId] = @UsuarioId AND [AgregadoEn] > @AgregadoEn";

                using (SqlConnection con = new SqlConnection(ConnString))
                {
                    SqlCommand cmd = new SqlCommand(query, con);
                    cmd.Parameters.AddWithValue("@AgregadoEn", currentTime);
                    cmd.Parameters.AddWithValue("@UsuarioId", usuario.UsuarioId);

                    if (con.State != System.Data.ConnectionState.Open)
                    {
                        con.Open();
                    }
                    cmd.Notification = null;

                    SqlDependency sqlDep = new SqlDependency(cmd);
                    sqlDep.OnChange += SqlDep_OnChange;

                    using (SqlDataReader reader = cmd.ExecuteReader())
                    {
                    }
                }
                var SH   = new SubscriptionsHelper();
                var Subs = SH.Get(); // Obtiene la suscripción actual de dependencia con la base de datos
                var RH   = new RegistroNotificacionesHelper();
                RH.Post(             // Agrega el registro para controlar las suscripciones
                    new RegistroNotificaciones()
                {
                    RegistroNotificacionId = 0,
                    SuscripcionId          = Subs,
                    UsuarioId = USER.UsuarioId
                }
                    );
            }
        }