public ManageLoans(AdminHome ah)
 {
     InitializeComponent();
     this.PopulateGridView();
     cbLoanStatus.SelectedIndex = 0;
     this.ah = ah;
     this.reset();
 }
예제 #2
0
 public CheckCustomerTransactions(AdminHome ah)
 {
     InitializeComponent();
     f1 = false;
     f2 = true;
     this.PopulateGridView();
     this.ah = ah;
 }
        public EmployeeInformation(AdminHome ah, AdminData ad)
        {
            InitializeComponent();
            this.ah = ah;
            this.ad = ad;
            this.reset1();
            var sq = Employee.DataAccess.Sqcon;

            sq = Admin.DataAccess.Sqcon;
            f  = false;
        }
 public CustomerInfo(AdminHome ah)
 {
     InitializeComponent();
     this.ah = ah;
     this.PopulateGridView();
     cbCustomerStatus.SelectedIndex = 0;
     okBtn.Text = "Suspend";
     f1         = false; f2 = true;
     this.customerGrid.Columns[0].Visible = false;
     deleteBtn.Visible = true;
 }