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