Beispiel #1
0
 public bool Delete(AnimalType currentElement)
 {
     try
     {
         AnimalDAL animalDal = new AnimalDAL();
         return(animalDal.DeleteAnimalType(currentElement));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }