Ejemplo n.º 1
0
 partial void ToModelPostprocessing(LedgerTransactionDto dto, ref BankBalanceAdjustmentTransaction model)
 {
     model.BankAccount = this.accountTypeRepo.GetByKey(dto.Account) ?? this.accountTypeRepo.GetByKey(AccountTypeRepositoryConstants.Cheque);
 }
Ejemplo n.º 2
0
 partial void ToModelPostprocessing(LedgerTransactionDto dto, ref BankBalanceAdjustmentTransaction model)
 {
     model.BankAccount = this.accountTypeRepo.GetByKey(dto.Account) ?? this.accountTypeRepo.GetByKey(AccountTypeRepositoryConstants.Cheque);
 }
Ejemplo n.º 3
0
 partial void ToDtoPostprocessing(ref LedgerTransactionDto dto, BankBalanceAdjustmentTransaction model)
 {
     dto.Account         = model.BankAccount.Name;
     dto.TransactionType = model.GetType().FullName;
 }
Ejemplo n.º 4
0
 partial void ToDtoPostprocessing(ref LedgerTransactionDto dto, BankBalanceAdjustmentTransaction model)
 {
     dto.Account = model.BankAccount.Name;
     dto.TransactionType = model.GetType().FullName;
 }