Example #1
0
        public IActionResult Get(int id)
        {
            var lecturer = _dataStore.GetLecturerById(id);

            if (lecturer != null)
            {
                return(Ok(lecturer));
            }
            else
            {
                return(NotFound());
            }
        }