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