예제 #1
0
 public FFind(string keyword, FSell fSellParrent, FBuy fBuyParrent)
 {
     InitializeComponent();
     _Keyword      = keyword;
     _FBuyParrent  = fBuyParrent;
     _FSellParrent = fSellParrent;
     _Data         = TaoBang();
 }
예제 #2
0
        //đã xong
        private void tsmiSell_Click(object sender, EventArgs e)
        {
            int   _maHoaDon = _MaHoaDonHienTai++;
            Staff _nhanVien = StaffDAO.Instance.LayNhanVienTheoMa(_Account.MaNV);
            FSell _fSell    = new FSell(_maHoaDon, _nhanVien, this);

            _fSell.Show();
        }