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