public CheckCustomerTransactions(EmployeeHome eh) { InitializeComponent(); this.PopulateGridView(); this.eh = eh; f1 = true; f2 = false; }
public MyLoans(EmployeeHome eh, EmployeeData ed) { InitializeComponent(); this.eh = eh; this.ed = ed; f = false; this.reset(); this.PopulateGridView(this.ed.Id); }
public LoanApplication(EmployeeHome eh, EmployeeData ed) { InitializeComponent(); this.eh = eh; this.ed = ed; this.userId = ed.Id; f = 0; this.user = "******"; }
public EmployeeInformation(EmployeeHome eh, EmployeeData ed) { InitializeComponent(); this.eh = eh; this.ed = ed; this.reset(); var sq = Employee.DataAccess.Sqcon; f = true; }
public CustomerInfo(EmployeeHome eh) { InitializeComponent(); this.eh = eh; this.PopulateGridView(); cbCustomerStatus.SelectedIndex = 0; okBtn.Text = "Suspend"; this.customerGrid.Columns[0].Visible = false; f1 = true; f2 = false; }
public EmployeeTransaction(EmployeeHome eh, EmployeeData ed) { InitializeComponent(); this.eh = eh; this.ed = ed; balanceLabel.Text = "Balance: " + ed.Balance.ToString(); recieverText.Text = ed.Id; recieverText.Enabled = false; this.PopulateGridView(); }