public void OnNotify(bool isConnectedDB)
 {
     if (!isConnectedDB)
     {
         connectionIndicator.enabled = true;
         TweenFacade.TweenImageFadeInFadeOut(connectionIndicator);
     }
     else
     {
         connectionIndicator.enabled = false;
     }
 }