public ActionResult <Lecture> Create(Lecture lect) { _lectureService.Create(lect); return(CreatedAtRoute("GetLecture", new { id = lect.Id.ToString() }, lect)); }