Example #1
0
 public DialogViewModel(string label, decimal totalAmount, bool isWithdraw)
 {
     Data = new DialogDataModel(label, totalAmount, isWithdraw);
 }
 public TransactionViewModel(List <BankAccount> accounts, decimal CurrentAmount)
 {
     this.accounts = new List <BankAccount>(accounts);
     Data          = new DialogDataModel("Перевод", CurrentAmount, true);
 }