public ColumnCellArtistAccessible(object boundObject, ColumnCellArtistCover cell, ICellAccessibleParent parent)
                : base(boundObject, cell, parent)
            {
                var bound_artist_info = boundObject as ArtistInfo;

                if (bound_artist_info != null)
                {
                    Name = bound_artist_info.DisplayName;
                }
            }
 public ColumnCellArtistAccessible(object boundObject, ColumnCellArtistCover cell, ICellAccessibleParent parent)
     : base(boundObject, cell, parent)
 {
     var bound_artist_info = boundObject as ArtistInfo;
     if (bound_artist_info != null) {
         Name = bound_artist_info.DisplayName;
     }
 }