Exemple #1
0
 public LoanApplication(CustomerHome ch, CustomerData cd)
 {
     InitializeComponent();
     this.ch     = ch;
     this.cd     = cd;
     this.userId = cd.Id;
     this.user   = "******";
     f           = 1;
 }
 public MyLoans(CustomerHome ch, CustomerData cd)
 {
     InitializeComponent();
     this.ch = ch;
     this.cd = cd;
     f       = true;
     this.PopulateGridView(this.cd.Id);
     this.reset();
 }
Exemple #3
0
        public CustomerInformation(CustomerHome customerHome, CustomerData cd)
        {
            InitializeComponent();
            this.customerHome = customerHome;
            this.cd           = cd;

            this.reset();

            var sq = Customer.DataAccess.Sqcon;
        }
Exemple #4
0
        public MyTransactions(CustomerHome ch, CustomerData cd)
        {
            InitializeComponent();
            this.ch              = ch;
            this.cd              = cd;
            balanceLabel.Text    = "Balance: " + cd.Balance.ToString();
            recieverText.Text    = cd.Id;
            recieverText.Enabled = false;

            this.PopulateGridView();
        }