// **************************************
        // RemoveFromAdminBalance
        // **************************************
        public static void RemoveFromSongsBalance(this User user)
        {
            using (var ctx = new SongSearchContext()) {

                ctx.RemoveFromSongsBalance(user);
                ctx.SaveChanges();
            }
        }