// PUT: api/horarios/5 public IHttpActionResult Put([FromBody] DTOhorario value) { if (value != null) { /* if (id == value.IDhorario) * {*/ horario info = new horario { IDhorario = value.IDhorario, descripcio = value.descripcion, }; context.Entry(info).State = EntityState.Modified; context.SaveChanges(); return(Ok("Modificado")); /*} * else * { * return Ok("No es igual el ID del horario"); * }*/ } return(NotFound()); }
// POST: api/horarios public IHttpActionResult Post([FromBody] DTOhorario value) { if (value != null) { horario info = new horario { descripcio = value.descripcion }; context.horarios.Add(info); context.SaveChanges(); return(Ok("Horario Insertado")); } return(NotFound()); }