// PUT: api/materiaEstudiantes/5
        public IHttpActionResult Put([FromBody] DTOmateriaEstudiante value)
        {
            if (value != null)
            {
                // if (id == value.IDestudiante_materia)
                //{
                materia_estudiante info = new materia_estudiante
                {
                    IDestudiante_materia = value.IDestudiante_materia,
                    IDestudiante         = value.IDestudiante,
                    IDmateria            = value.IDmateria,
                };


                context.Entry(info).State = EntityState.Modified;
                context.SaveChanges();

                return(Ok("Modificado"));

                /*}
                 * else
                 * {
                 *  return Ok("No es igual el IDmateria_estudiante");
                 * }*/
            }

            return(NotFound());
        }
        // POST: api/materiaEstudiantes
        public IHttpActionResult Post([FromBody] DTOmateriaEstudiante value)
        {
            if (value != null)
            {
                materia_estudiante info = new materia_estudiante
                {
                    IDestudiante_materia = value.IDestudiante_materia,
                    IDestudiante         = value.IDestudiante,
                    IDmateria            = value.IDmateria,
                };

                context.materia_estudiante.Add(info);
                context.SaveChanges();

                return(Ok("Insertado"));
            }

            return(NotFound());
        }