예제 #1
0
 public int ObtenerLoteSalidaAnimal(string arete, string areteTestigo, int organizacionID)
 {
     try
     {
         Logger.Info();
         var animalBl = new AnimalBL();
         int lote     = animalBl.ObtenerLoteSalidaAnimal(arete, areteTestigo, organizacionID);
         return(lote);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }