Пример #1
0
            public WhRow AddWhRow(int Sid, string WH_No, string WH_Name, string WH_Man, string Var1, string Var2, string Var3, string Var4, bool IsPrint)
            {
                WhRow rowWhRow = ((WhRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Sid,
                    WH_No,
                    WH_Name,
                    WH_Man,
                    Var1,
                    Var2,
                    Var3,
                    Var4,
                    IsPrint
                };
                rowWhRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowWhRow);
                return(rowWhRow);
            }
Пример #2
0
 public void RemoveWhRow(WhRow row)
 {
     this.Rows.Remove(row);
 }
Пример #3
0
 public void AddWhRow(WhRow row)
 {
     this.Rows.Add(row);
 }
Пример #4
0
 public WhRowChangeEvent(WhRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }