public IActionResult Put(SpecialisationLevel level) { specLevelService.Update(level); return(Ok(level)); }
public IActionResult Update(SpecialisationLevel level) { specialisationLevelService.Update(level); return(NoContent()); }