Exemple #1
0
 public bool Delete(int id)
 {
     if (id <= 0)
     {
         return(false);
     }
     return(_dao.DeleteItem(id));
 }