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