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