Exemplo n.º 1
0
        private bool ShouldUpgradeFromV12()
        {
            bool shouldUpgrade = false;

            if (mapiDb.DatabaseExists())
            {
                try
                {
                    mapiDbNoMaster.DatabaseExists();
                }
                catch (Exception)
                {
                    shouldUpgrade = true;
                }
            }
            return(shouldUpgrade);
        }
Exemplo n.º 2
0
 public bool DatabaseExists()
 {
     return(mapiDb.DatabaseExists());
 }
Exemplo n.º 3
0
 public bool DatabaseExists()
 {
     return(aggregatorDb.DatabaseExists());
 }