public bool TestConnection()
 {
     try
     {
         _accountProvider = new AccountProvider();
         if (_accountProvider.getAll() == null)
         {
             return(false);
         }
         return(true);
     }
     catch (Exception ex)
     {
         return(false);
     }
 }