/// <summary> /// Obtiene pedido por folio /// </summary> /// <param name="almacenInventarioLoteID"></param> /// <returns></returns> public List <PedidoPendienteLoteModel> ObtenerPedidosPendientesPorLote(int almacenInventarioLoteID) { List <PedidoPendienteLoteModel> resultado; try { Logger.Info(); var pedidosBl = new PedidosBL(); resultado = pedidosBl.ObtenerPedidosPendientesPorLote(almacenInventarioLoteID); } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } return(resultado); }