public bool ChangeContentById(string text, int id) { if (taskDAO.FindById(id) != null) { if (!String.IsNullOrWhiteSpace(text)) { taskDAO.UpdateById(text, id); return(true); } else { return(false); } } return(false); }