public BCHDBanLeRow AddBCHDBanLeRow(string MaHDBanHang, string TenHangHoa, double SoLuong, double GiaBanLe, double ChietKhau, double TongTienThanhToan, string HanhDong, double Thue)
            {
                BCHDBanLeRow rowBCHDBanLeRow = ((BCHDBanLeRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    MaHDBanHang,
                    TenHangHoa,
                    SoLuong,
                    GiaBanLe,
                    ChietKhau,
                    TongTienThanhToan,
                    HanhDong,
                    Thue
                };
                rowBCHDBanLeRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowBCHDBanLeRow);
                return(rowBCHDBanLeRow);
            }
 public BCHDBanLeRowChangeEvent(BCHDBanLeRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveBCHDBanLeRow(BCHDBanLeRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddBCHDBanLeRow(BCHDBanLeRow row)
 {
     this.Rows.Add(row);
 }