public async Task <IActionResult> GetAll() { var lectures = await _lectureService.GetAllLectures(); return(Ok(lectures)); }
// GET: Lectures public IActionResult Index() { return(View(_lectureService.GetAllLectures())); }