Exemple #1
0
        public Author LoadData(int id)
        {
            var author = authorRepository.GetById(id);

            author.Novels = novelRepository.GetNovelsForAuthor(id);
            foreach (var novel in author.Novels)
            {
                novel.Author = author;
            }
            return(author);
        }