public CusSelectRow AddCusSelectRow(int HotelID, int ID, System.DateTime BookingDate, string MealType, string RoomType, string GuiType, string VehType, string Place)
            {
                CusSelectRow rowCusSelectRow = ((CusSelectRow)(this.NewRow()));

                rowCusSelectRow.ItemArray = new object[] {
                    HotelID,
                    ID,
                    BookingDate,
                    MealType,
                    RoomType,
                    GuiType,
                    VehType,
                    Place
                };
                this.Rows.Add(rowCusSelectRow);
                return(rowCusSelectRow);
            }
 public CusSelectRowChangeEvent(CusSelectRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveCusSelectRow(CusSelectRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddCusSelectRow(CusSelectRow row)
 {
     this.Rows.Add(row);
 }