Exemplo n.º 1
0
 internal void GetPaymentFromCustomer(Customer customer)
 {
     ResetTransactionData(TransactionType.Income);
     SelectedCustomer = new CustomerViewModel(customer);
 }
Exemplo n.º 2
0
 internal void AddLiabilityAmount(Customer customer)
 {
     ResetTransactionData(TransactionType.Liability);
     SelectedCustomer = new CustomerViewModel(customer);
 }
Exemplo n.º 3
0
 internal void AddReceivableAmount(Customer customer)
 {
     ResetTransactionData(TransactionType.Receivable);
     SelectedCustomer = new CustomerViewModel(customer);
 }
Exemplo n.º 4
0
 public void MakePaymentToCustomer(Customer customer)
 {
     ResetTransactionData(TransactionType.Expense);
     SelectedCustomer = new CustomerViewModel(customer);
 }