public static CorsoDocente ToCorsoDocente(this CorsoDocenteDTO cd) { return(new CorsoDocente { IdDocente = cd.IdDocente, IdEdizioneCorso = cd.IdEdizioneCorso, ValutazioneMedia = cd.ValutazioneMedia }); }
public IActionResult Post([FromBody] CorsoDocenteDTO value) { if (value == null) { return(BadRequest()); } CorsoDocente Docente = value.ToCorsoDocente(); work.Begin(); work.CorsiDocentiRepo.Add(Docente); work.Save(); work.End(); return(CreatedAtRoute("ROUTE_GET_COURSE", new { id = Docente.IdEdizioneCorso }, Docente.ToDTO())); //return CreatedAtAction("GetCorsoDocente", new { id = corsoDocente.IdDocente }, corsoDocente); }