Beispiel #1
0
            public AmpherRow AddAmpherRow(string AmpherName, string CRate, string DRate, string LRate, int ProvinceID)
            {
                AmpherRow rowAmpherRow = ((AmpherRow)(this.NewRow()));

                rowAmpherRow.ItemArray = new object[] {
                    null,
                    AmpherName,
                    CRate,
                    DRate,
                    LRate,
                    ProvinceID
                };
                this.Rows.Add(rowAmpherRow);
                return(rowAmpherRow);
            }
 public AmpherRowChangeEvent(AmpherRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveAmpherRow(AmpherRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddAmpherRow(AmpherRow row)
 {
     this.Rows.Add(row);
 }
Beispiel #5
0
 public AmpherRowChangeEvent(AmpherRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }