public AcontecimentosViewModel() { Acontecimentos = new PartidaBusiness().GetAcontecimentos(); CadastrarAcontecimentoClicked = new Command(() => { MessagingCenter.Send(this, "CadastrarAcontecimentoClicked"); }); }
public PartidaViewModel() { Partidas = new PartidaBusiness().GetPartida(); CadastrarPartidaClicked = new Command(() => { MessagingCenter.Send(this, "CadastrarPartidaAbrir"); }); PartidaTappedCommand = new Command(() => { MessagingCenter.Send(PartidaSelecionada.Id, "AcontecimentosAbrir"); }); }