예제 #1
0
 public static bool Delete(Serie y)
 {
     try
     {
         return(SerieDAO.deleteSerie(y));
     }
     catch (Exception ex)
     {
         throw new Exception("Suppression Impossible", ex);
     }
 }
예제 #2
0
        public void deleteSerie(int id)
        {
            SerieDAO serDAO = new SerieDAO();

            serDAO.deleteSerie(id);
        }