Esempio n. 1
0
        private DataTable summary()
        {
            DatabaseView view = new DatabaseView(database);

            view.StartDate = StartDate;
            view.EndDate   = EndDate;
            return(view.AccountLoans(account, IncludeClosedLoans));
        }
Esempio n. 2
0
 public AllAccounts(Database database)
 {
     this.database = database;
     this.databaseView = new DatabaseView(database);
 }
Esempio n. 3
0
 public AllAccounts(Database database)
 {
     this.database     = database;
     this.databaseView = new DatabaseView(database);
 }
Esempio n. 4
0
 public NextMonthPayments(Database database)
 {
     this.database = database;
     this.view     = new DatabaseView(database);
 }
Esempio n. 5
0
 public NextMonthPayments(Database database)
 {
     this.database = database;
     this.view = new DatabaseView(database);
 }