示例#1
0
        public static bool RestoreData(string bakFullName)
        {
            bool result = new BackupRestoreDao().RestoreData(bakFullName);

            new BackupRestoreDao().Restor();
            return(result);
        }
示例#2
0
        public static bool RestoreData(string bakFullName)
        {
            BackupRestoreDao dao  = new BackupRestoreDao();
            bool             flag = dao.RestoreData(bakFullName);

            dao.Restor();
            return(flag);
        }