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