public int Post([FromBody] Lecture lecture) { _log.Info("Insert a new lecture: " + lecture.Name); return(lectureRepo.AddOrUpdate(lecture)); }