public async Task <IActionResult> PutCategoriaCarrera(int id, CategoriaCarrera categoriaCarrera)
        {
            if (id != categoriaCarrera.idcarrera)
            {
                return(BadRequest());
            }

            _context.Entry(categoriaCarrera).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!CategoriaCarreraExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }
        public async Task <ActionResult <CategoriaCarrera> > PostCategoriaCarrera(CategoriaCarrera categoriaCarrera)
        {
            _context.CategoriaCarrera.Add(categoriaCarrera);
            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateException)
            {
                if (CategoriaCarreraExists(categoriaCarrera.idcarrera))
                {
                    return(Conflict());
                }
                else
                {
                    throw;
                }
            }

            return(CreatedAtAction("GetCategoriaCarrera", new { id = categoriaCarrera.idcarrera }, categoriaCarrera));
        }