Exemplo n.º 1
0
        public AccountTransferSource CreateTransferSource(IEnumerable <Billing> billings,
                                                          int transferResultCode, decimal transferAmount, ConcreteRecord.IAccountTransferInformation information)
        {
            var source = new AccountTransferSource(billings, transferResultCode, transferAmount)
            {
                TransferBankName     = information?.TransferBankName,
                TransferBranchName   = information?.TransferBranchName,
                TransferCustomerCode = information?.TransferCustomerCode,
                TransferAccountName  = information?.TransferAccountName,
            };

            return(source);
        }
Exemplo n.º 2
0
 public MatchingResultViewModel(AccountTransferSource mr)
     : base(mr.Billings, mr.TransferResultCode, mr.TransferAmount)
 {
 }