Beispiel #1
0
 private void Init(BankStatementHeader header, BankAccount bankAccount)
 {
     this.Header        = header;
     this.BankAccount   = bankAccount;
     this.BankAccountId = bankAccount.Id;
     this.Transactions  = new List <BankTransactions>();
 }
Beispiel #2
0
        public BankStatement(BankStatementHeader header, BankAccount bankAccount, DateTime initialDate, DateTime finalDate)
        {
            Init(header, bankAccount);

            this.InitialDate = initialDate;
            this.FinalDate   = finalDate;
        }
Beispiel #3
0
 public BankStatement(BankStatementHeader header, BankAccount bankAccount)
 {
     Init(header, bankAccount);
 }