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