Beispiel #1
0
		public bool ExecuteBackupDiff(string root)
		{
			using (OptionDataAccess optionDataAccess = new OptionDataAccess())
			{
				try
				{
					optionDataAccess.ExecuteBackupDiff(root);
					return true;
				}
				catch(Exception ex)
				{
					Util.WriteLog(ex.Message,Util.EXCEPTION_LOG_TITLE);
					return false;
				}
			}
		}