예제 #1
0
 public PartidaViewModel(Partida partida)
     : this()
 {
     _servico      = new PartidaDataService();
     EntidadeAtual = partida;
 }
예제 #2
0
 public PartidaViewModel()
 {
     _servico = new PartidaDataService();
     Partidas = new ObservableCollection <Partida>();
     CarregarLista();
 }