private void menuChiTiet_Click(object sender, EventArgs e) { DTO.AccountDTO loginAccount = DAO.AccountDAO.Instance.GetAccount(fDangNhap.userName); fChiTiet f = new fChiTiet(loginAccount); f.ShowDialog(); }
private void btnDangNhap_Click(object sender, EventArgs e) { string UserName = txbDangNhap.Text; string PassWord = txbMatKhau.Text; if (DangNhap(UserName, PassWord)) { userName = txbDangNhap.Text; DTO.AccountDTO loginAccount = DAO.AccountDAO.Instance.GetAccount(UserName); fQuanLyThuVien f = new fQuanLyThuVien(loginAccount); this.Hide(); f.ShowDialog(); this.Show(); } else { MessageBox.Show("Sai tên đăng nhập hoặc mật khẩu!", "Thông báo"); } }
public fQuanLyThuVien(DTO.AccountDTO acc) { InitializeComponent(); this.LoginAccount = acc; }
public AccountEvent(DTO.AccountDTO acc) { this.Acc = acc; }
void ChangeAccount(DTO.AccountDTO acc) { txbTenDangNhapTTCN.Text = LoginAccount.UserName; txbTenHienThiTTCN.Text = LoginAccount.DisplayName; }
public fThongTinCaNhan(DTO.AccountDTO acc) { InitializeComponent(); LoginAccount = acc; }
public fChiTiet(DTO.AccountDTO acc) { InitializeComponent(); this.LoginAccount = acc; }