private void SaveAlbum(object sender, EditAlbumEventArgs <AlbumInfo, bool, string> e) { //Store Model Info to Data base var albumInfo = new AlbumInfo(); albumInfo.Title = e.Album.Title; Controller.AddAlbum(albumInfo); }
private void SaveAlbum(object sender, EditAlbumEventArgs <AlbumInfo, bool, string> e) { //Store Model Info to Data base AlbumInfo albumInfo = new AlbumInfo(); albumInfo.AlbumName = e.Album.AlbumName; Controller.AddAlbum(albumInfo); throw new NotImplementedException(); }