Ejemplo n.º 1
0
 internal SongbookDto ToDto()
 {
     return(new SongbookDto()
     {
         Id = Id,
         Title = Title,
         Publisher = Publisher,
         ISBN10 = ISBN10,
         ISBN13 = ISBN13,
         Creators = Creators.Select(c => c.ToDto()).ToList(),
         Songs = Songs.Select(s => s.ToDto()).ToList()
     });
 }