Ejemplo n.º 1
0
        internal IList <AlmacenInventarioLoteInfo> ObtenerLotesUso(AlmacenInventarioLoteInfo datosLote)
        {
            IList <AlmacenInventarioLoteInfo> listaLotes = null;

            try
            {
                var almacenDAL = new AlmacenInventarioLoteDAL();

                listaLotes = almacenDAL.ObtenerLotesUso(datosLote);
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }

            return(listaLotes);
        }