Beispiel #1
0
        public int ObtenerPedidosProgramadosPorLoteCantidadProgramada(int almacenInventarioLoteId)
        {
            int resultado;

            try
            {
                Logger.Info();
                var pedidosDal = new PedidosDAL();
                resultado = pedidosDal.ObtenerPedidosProgramadosPorLoteCantidadProgramada(almacenInventarioLoteId);
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
            return(resultado);
        }