public static bool DeleteGenre(int key)
 {
     try {
         int deleted = DBMusicDatabase.DeleteRow(DBSQLQueries.DeleteGenre(), key);
         if (deleted == 1)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     } catch (Exception ex) {
         throw ex;
     }
 }