public LoanTransactionsHistory(ManageLoans mls)
 {
     InitializeComponent();
     this.mls = mls;
     f        = true;
     this.PopulateGridView("select * from loanTransaction");
     this.loanHistoryGrid.Columns[0].Visible = true;
 }
Ejemplo n.º 2
0
 private void manageLoansBtn_Click(object sender, EventArgs e)
 {
     this.Visible = false;
     if (ml == null)
     {
         ml = new ManageLoans(this);
     }
     ml.Visible = true;
 }
 public ActiveLoan(ManageLoans ml)
 {
     InitializeComponent();
     this.ml = ml;
     this.populateGridView();
 }
Ejemplo n.º 4
0
 public RequestedLoan(ManageLoans mls)
 {
     InitializeComponent();
     this.mls = mls;
     this.PopulateGridView();
 }