コード例 #1
0
        /// <summary>
        /// Obtiene pedido por folio
        /// </summary>
        /// <param name="almacenInventarioLoteID"></param>
        /// <returns></returns>
        public List <PedidoPendienteLoteModel> ObtenerPedidosEntregadosPorLote(int almacenInventarioLoteID)
        {
            List <PedidoPendienteLoteModel> resultado;

            try
            {
                Logger.Info();
                var pedidosBl = new PedidosBL();
                resultado = pedidosBl.ObtenerPedidosEntregadosPorLote(almacenInventarioLoteID);
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
            return(resultado);
        }