private async Task ProcesarAutor(XPCollection <Autor> autores, List <AutorView> listaAutorView) { foreach (var autor in autores) { var autorView = new AutorView { Apellidos = autor.Apellidos, Nombre = autor.Nombre, OID = autor.Oid }; listaAutorView.Add(autorView); } }
private void btnAutor_Click_1(object sender, EventArgs e) { AutorView autorView = new AutorView(); autorView.Show(); }