コード例 #1
0
 public void Save()
 {
     if (Giver == Taker)
     {
         MessageBox.Show("Giver and Taker can't be the same");
         return;
     }
     _serviceClient.AddDebt(new Debt(Giver.id, Taker.id, Amount),
                            () => Execute.OnUIThread(() => _navigationService.GoBack()));
 }