예제 #1
0
        public async Task <string> CriarPlaylist(CriarPlaylistParametro criarPlaylistParametro)
        {
            var negocio = new YoutubeNegocio();

            return(await negocio.CriarPlaylist(criarPlaylistParametro));
        }
예제 #2
0
 public async Task <string> CriarPlaylist(CriarPlaylistParametro criarPlaylistParametro)
 {
     Login();
     return(await Sessao.youtube.CreatePlaylist(criarPlaylistParametro.Nome));
 }