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