Esempio n. 1
0
        internal VigilanciaInfo ObtenerPorEmbarqueTipoOrganizacion(VigilanciaInfo organizacionInfo, IList <IDictionary <IList <string>, object> > dependencias)
        {
            VigilanciaInfo organizacion = null;

            try
            {
                Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerParametrosEmbarqueTipoOrganizacion(organizacionInfo, dependencias);
                DataSet ds = Retrieve("Organizacion_ObtenerPorEmbarqueTipoOrigen", parameters);
                if (ValidateDataSet(ds))
                {
                    organizacion = MapProductoVigilanciaDAL.ObtenerPorEmbarqueTipoOrganizacion(ds);
                }
            }
            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);
            }
            return(organizacion);
        }
Esempio n. 2
0
 /// <summary>
 /// Obtiene un registro de Organizacion
 /// </summary>
 /// <param name="descripcion">Descripción de la Organizacion</param>
 /// <returns></returns>
 internal VigilanciaInfo ObtenerPorDescripcion(string descripcion)
 {
     try
     {
         Logger.Info();
         Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerParametrosPorDescripcion(descripcion);
         DataSet        ds     = Retrieve("Organizacion_ObtenerPorDescripcion", parameters);
         VigilanciaInfo result = null;
         if (ValidateDataSet(ds))
         {
             result = MapProductoVigilanciaDAL.ObtenerPorDescripcion(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);
     }
 }
Esempio n. 3
0
        /// <summary>
        ///     Obtiene una lista de organizaciones que tengan embarques pendientes por recibir
        /// </summary>
        /// <param name="organizacionId">Identificador de la organización</param>
        /// <param name="estatus">Estatus del embarque </param>
        /// <returns></returns>
        internal IList <VigilanciaInfo> ObtenerPendientesRecibir(int organizacionId, int estatus)
        {
            try
            {
                Logger.Info();
                Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerPendientesRecibir(organizacionId, estatus);
                DataSet ds = Retrieve("Organizacion_ObtenerPendientesRecibir", parameters);
                IList <VigilanciaInfo> result = null;
                if (ValidateDataSet(ds))
                {
                    result = MapProductoVigilanciaDAL.ObtenerPendientesRecibir(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);
            }
        }
Esempio n. 4
0
        /// <summary>
        ///     Obtiene un lista paginada de organizaciones
        /// </summary>
        /// <param name="pagina"></param>
        /// <param name="filtro"></param>
        /// <param name="dependencias"></param>
        /// <returns></returns>
        internal ResultadoInfo <VigilanciaInfo> ObtenerPorPaginaOrigenID(PaginacionInfo pagina, VigilanciaInfo filtro
                                                                         , IList <IDictionary <IList <String>, Object> > dependencias)
        {
            ResultadoInfo <VigilanciaInfo> organizacionLista = null;

            try
            {
                Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerParametrosPorFolio(pagina, filtro, dependencias);
                DataSet ds = Retrieve("Organizacion_ObtenerOrganizacionPorOrigenIDPaginado", parameters);
                if (ValidateDataSet(ds))
                {
                    organizacionLista = MapProductoVigilanciaDAL.ObtenerOrganizacionPorOrigenIDPaginado(ds);
                }
            }
            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);
            }
            return(organizacionLista);
        }
Esempio n. 5
0
 /// <summary>
 ///     Metodo que crear un Organizacion
 /// </summary>
 /// <param name="info"></param>
 internal int Crear(VigilanciaInfo info)
 {
     try
     {
         Logger.Info();
         Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerParametrosCrear(info);
         int infoId = Create("[dbo].[Organizacion_Crear]", parameters);
         return(infoId);
     }
     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);
     }
 }
Esempio n. 6
0
        /// <summary>
        ///     Obtiene una lista de Organizacion filtrando por el estatus Activo = 1, Inactivo = 0
        /// </summary>
        /// <returns></returns>
        internal List <VigilanciaInfo> ObtenerTodos(EstatusEnum estatus)
        {
            List <VigilanciaInfo> result = null;

            try
            {
                Logger.Info();
                Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerTodos(estatus);
                DataSet ds = Retrieve("[dbo].[Organizacion_ObtenerTodos]", parameters);
                if (ValidateDataSet(ds))
                {
                    result = MapProductoVigilanciaDAL.ObtenerTodos(ds);
                }
            }
            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);
            }
            return(result);
        }
Esempio n. 7
0
        /// <summary>
        ///     Obtiene un lista paginada
        /// </summary>
        /// <param name="pagina"></param>
        /// <param name="filtro"></param>
        /// <returns></returns>
        internal ResultadoInfo <ProductoInfo> ObtenerProductosPorPagina(PaginacionInfo pagina, ProductoInfo filtro)
        {
            ResultadoInfo <ProductoInfo> lista = null;

            try
            {
                Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerParametrosProductosPorPaginaPagina(pagina, filtro);
                DataSet ds = Retrieve("[dbo].[Vigilancia_Producto]", parameters);
                if (ValidateDataSet(ds))
                {
                    lista = MapProductoVigilanciaDAL.ObtenerProductosPorPaginaCompleto(ds);
                }
            }
            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);
            }
            return(lista);
        }
Esempio n. 8
0
 /// <summary>
 /// Obtiene una entidad por su ID
 /// </summary>
 /// <param name="producto"></param>
 /// <returns></returns>
 internal ProductoInfo ObtenerProductoPorID(ProductoInfo producto)
 {
     try
     {
         Logger.Info();
         Dictionary <string, object> parameters =
             AuxProductoVigilanciaDAL.ObtenerParametrosProductosPorID(producto);
         DataSet      ds     = Retrieve("Producto_ObtenerProductoVigilanciaPorProductoID", parameters);
         ProductoInfo result = null;
         if (ValidateDataSet(ds))
         {
             result = MapProductoDAL.ObtenerPorProductoID(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);
     }
 }
Esempio n. 9
0
 /// <summary>
 ///     Metodo que actualiza un Organizacion
 /// </summary>
 /// <param name="info"></param>
 internal void Actualizar(VigilanciaInfo info)
 {
     try
     {
         Dictionary <string, object> parameters = AuxProductoVigilanciaDAL.ObtenerParametrosActualizar(info);
         Update("[dbo].[Organizacion_Actualizar]", parameters);
     }
     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);
     }
 }