Exemple #1
0
 public string obtenerExisteMuerte(string arete)
 {
     try
     {
         Logger.Info();
         var    animalBl    = new AnimalBL();
         string areteMuerte = animalBl.obtenerExisteMuerte(arete);
         return(areteMuerte);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }