public GetPlaylistStatResult GetPlaylistStat(GetPlaylistStatRequest request)
 {
     return new GetPlaylistStatResult
     {
         Result = new ServiceResult<List<PlaylistStat>>
         {
             Data = new List<PlaylistStat>
             {
                 new PlaylistStat
                 {
                     Playlist = "0",
                     PlayersNumber = 0
                 }
             }
         }
     };
 }
        public GetPlaylistStatResult GetPlaylistStat(GetPlaylistStatRequest request)
        {
            return new GetPlaylistStatResult
            {
                Result = new ServiceResult<List<PlaylistStat>>
                {
                    Data = new List<PlaylistStat>
                    {
                        new PlaylistStat
                        {
                            Playlist = "A0937033-31C7-47BF-A739-9FCB8CF8E071",
                            PlayersNumber = 8
                        },
                        new PlaylistStat
                        {
                            Playlist = "edge_name",
                            PlayersNumber = 2
                        },

                    }
                }
            };
        }