public bool DeleteById(int id) { if (taskDAO.FindById(id) != null) { taskDAO.DeleteById(id); return(true); } return(false); }