コード例 #1
0
ファイル: Parentesco.cs プロジェクト: julioarriagada82/youcom
        public static IList <YouCom.DTO.ParentescoDTO> getListadoParentesco()
        {
            IList <YouCom.DTO.ParentescoDTO> IParentesco = new List <YouCom.DTO.ParentescoDTO>();

            DataTable pobjDataTable = new DataTable();

            if (YouCom.DAL.ParentescoDAL.getListadoParentesco(ref pobjDataTable))
            {
                foreach (DataRow wobjDataRow in pobjDataTable.Rows)
                {
                    YouCom.DTO.ParentescoDTO parentesco = new YouCom.DTO.ParentescoDTO();

                    parentesco.IdParentesco     = decimal.Parse(wobjDataRow["IdParentesco"].ToString());
                    parentesco.NombreParentesco = wobjDataRow["nombreParentesco"].ToString();

                    parentesco.UsuarioIngreso      = wobjDataRow["usuario_ingreso"].ToString();
                    parentesco.FechaIngreso        = wobjDataRow["fecha_ingreso"].ToString();
                    parentesco.UsuarioModificacion = wobjDataRow["usuario_modificacion"].ToString();
                    parentesco.FechaModificacion   = wobjDataRow["fecha_modificacion"].ToString();

                    parentesco.Estado = wobjDataRow["estado"].ToString();

                    IParentesco.Add(parentesco);
                }
            }

            return(IParentesco);
        }
コード例 #2
0
        public static bool ActivaParentesco(YouCom.DTO.ParentescoDTO theParentescoDTO)
        {
            bool retorno = false;

            YouCom.Service.BD.SQLHelper wobjSQLHelper = new YouCom.Service.BD.SQLHelper();

            wobjSQLHelper.SetParametro("@usuarioIngreso", SqlDbType.VarChar, 50, theParentescoDTO.UsuarioModificacion);
            wobjSQLHelper.SetParametro("@pIdParentesco", SqlDbType.Decimal, -1, theParentescoDTO.IdParentesco);

            try
            {
                //====================================================================================
                switch (wobjSQLHelper.EjecutarNQ("Activa_Parentesco", "YouCom"))
                {
                case 0:
                    throw new Exception("No se pudo grabar.");

                case -1:
                    throw new Exception("Hubo un error.");

                case -2:
                    throw new Exception("Hubo un error.");
                }
                //====================================================================================
                retorno = true;
            }
            catch (Exception eobjException)
            {
                throw eobjException;
            }
            return(retorno);
        }
コード例 #3
0
ファイル: Parentesco.cs プロジェクト: julioarriagada82/youcom
        public static bool ValidaEliminacionParentesco(YouCom.DTO.ParentescoDTO theParentescoDTO)
        {
            DataTable pobjDataTable = new DataTable();
            bool      retorno       = false;

            if (YouCom.DAL.ParentescoDAL.ValidaEliminacionParentesco(theParentescoDTO, ref pobjDataTable))
            {
                foreach (DataRow wobjDataRow in pobjDataTable.Rows)
                {
                    retorno = true;
                }
            }

            return(retorno);
        }
コード例 #4
0
        public static bool Update(YouCom.DTO.ParentescoDTO myParentescoDTO)
        {
            bool retorno = false;

            YouCom.Service.BD.SQLHelper wobjSQLHelper = new YouCom.Service.BD.SQLHelper();

            try
            {
                //Seteo Parámetros.
                //====================================================================================
                wobjSQLHelper.SetParametro("@pIdParentesco", SqlDbType.Decimal, -1, myParentescoDTO.IdParentesco);
                wobjSQLHelper.SetParametro("@pNombreParentesco", SqlDbType.VarChar, 200, myParentescoDTO.NombreParentesco);
                wobjSQLHelper.SetParametro("@pUsuarioModificacion", SqlDbType.VarChar, 20, myParentescoDTO.UsuarioModificacion);
                //====================================================================================

                //Ejecuto SP.
                //====================================================================================
                switch (wobjSQLHelper.EjecutarNQ("UPD_Parentesco", "YouCom"))
                {
                case 0:
                    throw new Exception("No se pudo grabar.");

                case -1:
                    throw new Exception("Hubo un error.");

                case -2:
                    throw new Exception("Hubo un error.");
                }
                //====================================================================================

                retorno = true;
            }

            #region Catch

            catch (Exception eobjException)
            {
                throw eobjException;
            }
            #endregion

            return(retorno);
        }