Ejemplo n.º 1
0
        public ActionResult EliminarInternos(Internos _Internos)
        {
            try
            {
                SqlConnection SqlCnn;
                SqlCnn = Base.AbrirConexion();
                SqlCommand SqlCmd = new SqlCommand("Proc_Internos_Delete", SqlCnn);
                SqlCmd.CommandType = CommandType.StoredProcedure;
                SqlCmd.Parameters.AddWithValue("@idinterno", _Internos.idinterno);
                SqlCmd.Parameters.AddWithValue("@idcentral", _Internos.idcentral);

                SqlCmd.ExecuteNonQuery();
                Base.CerrarConexion(SqlCnn);
                return(Ok("Operacion realizada correctamente"));
            }
            catch (SqlException XcpSQL)
            {
                foreach (SqlError se in XcpSQL.Errors)
                {
                    if (se.Number <= 50000)
                    {
                        return(BadRequest(se.Message));
                    }
                    else
                    {
                        return(BadRequest("Error en Operacion de Eliminacion de Datos"));
                    }
                }
            }
            catch (Exception Ex)
            {
                return(BadRequest(Ex.Message));
            }
            return(Ok(""));
        }
Ejemplo n.º 2
0
        public Internos BuscarInternos(System.String idinterno, System.Int32 idcentral)
        {
            Internos _Internos = new Internos();

            try
            {
                SqlConnection SqlCnn;
                SqlCnn = Base.AbrirConexion();
                SqlCommand SqlCmd = new SqlCommand("Proc_Internos_Search", SqlCnn);
                SqlCmd.CommandType = CommandType.StoredProcedure;
                SqlCmd.Parameters.AddWithValue("@idinterno", idinterno);
                SqlCmd.Parameters.AddWithValue("@idcentral", idcentral);
                SqlDataReader rdr = SqlCmd.ExecuteReader();
                while (rdr.Read())
                {
                    _Internos.idinterno   = (System.String)rdr["idinterno"];
                    _Internos.idcentral   = (System.Int32)rdr["idcentral"];
                    _Internos.descripcion = (System.String)rdr["descripcion"];
                    _Internos.etiqueta    = !rdr.IsDBNull(3) ? (System.String)rdr["etiqueta"] : "";
                }
                Base.CerrarConexion(SqlCnn);
                return(_Internos);
            }
            catch (SqlException XcpSQL)
            {
                foreach (SqlError se in XcpSQL.Errors)
                {
                    if (se.Number <= 50000)
                    {
                        throw new Exception(se.Message);
                    }
                    else
                    {
                        throw new Exception("Error en Operacion en Busqueda de Datos");
                    }
                }
                return(_Internos);
            }
            catch (Exception Ex)
            {
                throw new Exception(Ex.Message);
            }
        }
Ejemplo n.º 3
0
        public IEnumerable <Internos> ConsultarInternos()
        {
            List <Internos> lstInternos = new List <Internos>();

            try
            {
                SqlConnection SqlCnn;
                SqlCnn = Base.AbrirConexion();
                SqlCommand SqlCmd = new SqlCommand("Proc_Internos_Select", SqlCnn);
                SqlCmd.CommandType = CommandType.StoredProcedure;
                SqlDataReader rdr = SqlCmd.ExecuteReader();
                while (rdr.Read())
                {
                    Internos _Internos = new Internos();
                    _Internos.idinterno   = (System.String)rdr["idinterno"];
                    _Internos.idcentral   = (System.Int32)rdr["idcentral"];
                    _Internos.descripcion = (System.String)rdr["descripcion"];
                    _Internos.etiqueta    = !rdr.IsDBNull(3) ? (System.String)rdr["etiqueta"] : "";
                    lstInternos.Add(_Internos);
                }
                Base.CerrarConexion(SqlCnn);
                return(lstInternos);
            }
            catch (SqlException XcpSQL)
            {
                foreach (SqlError se in XcpSQL.Errors)
                {
                    if (se.Number <= 50000)
                    {
                        throw new Exception(se.Message);
                    }
                    else
                    {
                        throw new Exception("Error en Operacion de Consulta de Datos");
                    }
                }
                return(lstInternos);
            }
            catch (Exception Ex)
            {
                throw new Exception(Ex.Message);
            }
        }
Ejemplo n.º 4
0
		public ActionResult EliminarInternos([FromBody] Internos data)
		{
			return objInternos.EliminarInternos(data);
		}
Ejemplo n.º 5
0
		public ActionResult ActualizarInternos([FromBody] Internos data)
		{
			return objInternos.ActualizarInternos(data);
		}
Ejemplo n.º 6
0
		public ActionResult InsertarInternos([FromBody] Internos data)
		{
			return objInternos.InsertarInternos(data);
		}