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);
        }
예제 #2
0
        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();
        }