public void Post([FromBody] Professor professor) { if (ModelState.IsValid) { _ProfessorRepository.Add(professor); } }