예제 #1
0
 private bool CheckDataBase()
 {
     if (!ChefmateUtility.TestConnection(CurrentSettings.DbIpAddress, CurrentSettings.DbPath))
     {
         return(false);
     }
     return(true);
 }
예제 #2
0
 private bool CheckDataBase()
 {
     if (!ChefmateUtility.TestConnection(_dbIpAddress, _dbPath))
     {
         ValidationError = "Couldn't connect to Database.";
         return(false);
     }
     return(true);
 }