/// <summary> /// Obtiene una lista filtrando por el estatus Activo = 1, Inactivo = 0 /// </summary> /// <returns></returns> public IList <ProduccionDiariaDetalleInfo> ObtenerTodos(EstatusEnum estatus) { try { Logger.Info(); Dictionary <string, object> parameters = AuxProduccionDiariaDetalleDAL.ObtenerTodos(estatus); DataSet ds = Retrieve("ProduccionDiariaDetalle_ObtenerTodos", parameters); IList <ProduccionDiariaDetalleInfo> result = null; if (ValidateDataSet(ds)) { result = MapProduccionDiariaDetalleDAL.ObtenerTodos(ds); } return(result); } catch (SqlException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (DataException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } }
/// <summary> /// Obtiene una lista de ProduccionDiariaDetalle /// </summary> /// <returns></returns> public IList <ProduccionDiariaDetalleInfo> ObtenerTodos() { try { Logger.Info(); DataSet ds = Retrieve("ProduccionDiariaDetalle_ObtenerTodos"); IList <ProduccionDiariaDetalleInfo> result = null; if (ValidateDataSet(ds)) { result = MapProduccionDiariaDetalleDAL.ObtenerTodos(ds); } return(result); } catch (SqlException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (DataException ex) { Logger.Error(ex); throw new ExcepcionServicio(MethodBase.GetCurrentMethod(), ex); } catch (Exception ex) { Logger.Error(ex); throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex); } }