Ejemplo n.º 1
0
 /// <summary>
 /// Metodo para Crear un registro de SupervisionDetectores
 /// </summary>
 /// <param name="info">Valores de la entidad que será creada</param>
 internal int Crear(SupervisionDetectoresInfo info)
 {
     try
     {
         Logger.Info();
         Dictionary <string, object> parameters = AuxSupervisionDetectoresDAL.ObtenerParametrosCrear(info);
         int result = Create("SupervisionDetectores_Crear", parameters);
         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);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Obtiene un registro de SupervisionDetectores
 /// </summary>
 /// <param name="supervisionDetectoresID">Identificador de la SupervisionDetectores</param>
 /// <returns></returns>
 internal SupervisionDetectoresInfo ObtenerPorID(int supervisionDetectoresID)
 {
     try
     {
         Logger.Info();
         Dictionary <string, object> parameters = AuxSupervisionDetectoresDAL.ObtenerParametrosPorID(supervisionDetectoresID);
         DataSet ds = Retrieve("SupervisionDetectores_ObtenerPorID", parameters);
         SupervisionDetectoresInfo result = null;
         if (ValidateDataSet(ds))
         {
             result = MapSupervisionDetectoresDAL.ObtenerPorID(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);
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Obtiene la impresion de la Supervision de Detectores
 /// </summary>
 /// <param name="filtro">filtros de la pantalla</param>
 /// <returns></returns>
 internal List <ImpresionSupervisionDetectoresModel> ObtenerSupervisionDetectoresImpresion(FiltroImpresionSupervisionDetectores filtro)
 {
     try
     {
         Logger.Info();
         Dictionary <string, object> parameters = AuxSupervisionDetectoresDAL.ObtenerParametrosSupervisionDetectoresImpresion(filtro);
         DataSet ds = Retrieve("SupervisionDetectores_ObtenerImpresion", parameters);
         List <ImpresionSupervisionDetectoresModel> result = null;
         if (ValidateDataSet(ds))
         {
             result = MapSupervisionDetectoresDAL.ObtenerSupervisionDetectoresImpresion(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);
     }
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Obtiene una lista filtrando por el estatus Activo = 1, Inactivo = 0
 /// </summary>
 /// <returns></returns>
 internal IList <SupervisionDetectoresInfo> ObtenerTodos(EstatusEnum estatus)
 {
     try
     {
         Logger.Info();
         Dictionary <string, object> parameters = AuxSupervisionDetectoresDAL.ObtenerTodos(estatus);
         DataSet ds = Retrieve("SupervisionDetectores_ObtenerTodos", parameters);
         IList <SupervisionDetectoresInfo> result = null;
         if (ValidateDataSet(ds))
         {
             result = MapSupervisionDetectoresDAL.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);
     }
 }