コード例 #1
0
 public ShowPartyInviteesViewModel(IPartyInviteeRepository repository)
 {
     _repository = repository;
     Add = new ActionCommand(OnAdd);
     BetterAdd = new ActionCommand(OnBetterAdd);
     RefreshList();
 }
コード例 #2
0
 public AddInviteeViewModel(IPartyInviteeRepository repository)
 {
     _repository = repository;
     Add = new ActionCommand(OnAdd);
 }