/// <summary> /// Obtiene una entidad por su ID con lote y existencia /// </summary> /// <param name="producto"></param> /// <returns></returns> internal ProductoInfo ObtenerPorIDLoteExistenciaCantidadCero(ProductoInfo producto) { try { Logger.Info(); var productoDAL = new ProductoDAL(); ProductoInfo result = productoDAL.ObtenerPorIDLoteExistenciaCantidadCero(producto); return(result); } catch (ExcepcionGenerica) { throw; } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } }