Exemplo n.º 1
0
 public string ObtenerExisteVentaDetalle(string arete, string areteMetalico)
 {
     try
     {
         Logger.Info();
         var    animalBl          = new AnimalBL();
         string areteVentaDetalle = animalBl.ObtenerExisteVentaDetalle(arete, areteMetalico);
         return(areteVentaDetalle);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }