Esempio n. 1
0
 public static void AddOrUpdateBookGenre(AppDbContext db, Book book, Genre GenreToAdd)
 {
     if (book.Genre == GenreToAdd) //new artist is the same as the original artist
     {
         //do nothing
     }
     else
     {
         book.Genre = GenreToAdd;
     }
 }
Esempio n. 2
0
 public Book(string inputName, Genre SongGenres)
 {
     Title = inputName;
     Genre = SongGenres;
 }