Beispiel #1
0
        /// <summary>
        /// 删除歌曲
        /// </summary>
        /// <returns></returns>
        public int DeleteSongById(int SongId)
        {
            int row = 0;

            try
            {
                row = songService.DeleteSongById(SongId);
            }
            catch (Exception)
            {
                throw;
            }

            return(row);
        }