Ejemplo n.º 1
0
 public void Refresh()
 {
     if (GetGamerCommand.CanExecute(this))
     {
         GetGamerCommand.Execute(this);
     }
 }
Ejemplo n.º 2
0
 public GamerViewModel(IGamerService service)
 {
     GetGamerCommand  = new GetGamerCommand(service);
     SaveGamerCommand = new SaveGamerCommand(service);
 }