/// <summary>
 /// Método que agrega un registro a la tabla "EntradaProductoMuestra"
 /// Se agrega un solo registro por tratarse de un folio que cuya CalidadOrigen= 1
 /// </summary>
 public void AgregarNuevoRegistro(EntradaProductoInfo entradaProducto)
 {
     try
     {
         var boletaRecepcionForrajeDal = new BoletaRecepcionForrajeDAL();
         boletaRecepcionForrajeDal.AgregarNuevoRegistro(entradaProducto);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }