Пример #1
0
 public void NewTransaction(AccountHomeItemViewModel item)
 {
     if (String.IsNullOrEmpty(item.Customer.Pin))
     {
         ScreenCoordinator.NavigateToCustomer(item.Customer);
     }
     else
     {
         ScreenCoordinator.NavigateToPinEntry(item.Customer);
     }
 }
Пример #2
0
 public void NewTransaction(AccountHomeItemViewModel item)
 {
     if (String.IsNullOrEmpty(item.Customer.Pin))
         ScreenCoordinator.NavigateToCustomer(item.Customer);
     else
         ScreenCoordinator.NavigateToPinEntry(item.Customer);
 }