Пример #1
0
        public IActionResult GetMentorTechnologyList()
        {
            var mentortech = repository.GetMentorTechnologyList();

            if (!mentortech.Any())
            {
                return(NoContent());
            }
            return(Ok(mentortech));
        }