// GET api/kurs public IEnumerable <KursDTO> Get() { var kurser = personService.GetAllKurs(); return(kurser.Select(kurs => new KursDTO(kurs))); }