public static void Start()
 {
     if (_instance == null)
     {
         lock (typeof(NotificacionesHelperService))
         {
             if (_instance == null)
             {
                 _instance = new NotificacionesHelperService();
             }
         }
     }
 }
 public void Start()
 {
     NotificacionesHelperService.Start();
 }